APC_SMA_INFO(3) 1 APC_SMA_INFO(3)
apc_sma_info - Retrieves APC's Shared Memory Allocation information
SYNOPSIS
array apc_sma_info ([bool $limited = false])
DESCRIPTION
Retrieves APC's Shared Memory Allocation information.
PARAMETERS
o $limited
- When set to FALSE (default) apc_sma_info(3) will return a detailed information about each segment.
RETURN VALUES
Array of Shared Memory Allocation data; FALSE on failure.
EXAMPLES
Example #1
A apc_sma_info(3) example
<?php
print_r(apc_sma_info());
?>
The above example will output something similar to:
Array
(
[num_seg] => 1
[seg_size] => 31457280
[avail_mem] => 31448408
[block_lists] => Array
(
[0] => Array
(
[0] => Array
(
[size] => 31448408
[offset] => 8864
)
)
)
)
SEE ALSO
APC configuration directives.
PHP Documentation Group APC_SMA_INFO(3)