APCu Funktionen
PHP Manual

apcu_sma_info

(PECL apcu >= 4.0.0)

apcu_sma_info Retrieves APCu Shared Memory Allocation information

Beschreibung

array apcu_sma_info ([ bool $limited = false ] )

Retrieves APCu Shared Memory Allocation information.

Parameter-Liste

limited

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

Rückgabewerte

Array of Shared Memory Allocation data; FALSE on failure.

Beispiele

Beispiel #1 A apcu_sma_info() example

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

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

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

                )

        )

)

Siehe auch


APCu Funktionen
PHP Manual