apc_sma_info

(PECL apc >= 2.0.0)

apc_sma_info Retrieves APC's Shared Memory Allocation information

Opis

apc_sma_info ([ bool $limited = FALSE ] ) : array

Retrieves APC's Shared Memory Allocation information.

Parametry

limited

When set to FALSE (default) apc_sma_info() will return a detailed information about each segment.

Zwracane wartości

Array of Shared Memory Allocation data; FALSE on failure.

Przykłady

Przykład #1 A apc_sma_info() example

<?php
print_r
(apc_sma_info());
?>

Powyższy przykład wyświetli coś podobnego do:

Array
(
    [num_seg] => 1
    [seg_size] => 31457280
    [avail_mem] => 31448408
    [block_lists] => Array
        (
            [0] => Array
                (
                    [0] => Array
                        (
                            [size] => 31448408
                            [offset] => 8864
                        )

                )

        )

)

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top