apcu_sma_info

(PECL apcu >= 4.0.0)

apcu_sma_info Retrieves APCu Shared Memory Allocation information

설명

array apcu_sma_info ([ bool $limited = false ] )

Retrieves APCu Shared Memory Allocation information.

인수

limited

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

반환값

Array of Shared Memory Allocation data; FALSE on failure.

예제

Example #1 A apcu_sma_info() example

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

위 예제의 출력 예시:

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