略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: apcu_sma_info

2024-04-29

apcu_sma_info

(PECL apcu >= 4.0.0)

apcu_sma_info Retrieves APCu Shared Memory Allocation information

说明

apcu_sma_info(bool $limited = false): array|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.

范例

示例 #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 noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/function.apcu-sma-info.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3