codecamp

PHP8 apcu_key_info

(No version information available, might only be in Git)

apcu_key_info — 获取有关缓存键的详细信息

说明

apcu_key_info(string $key): ?array

获取有关缓存键的详细信息

参数

key

获取有关缓存键的详细信息

返回值

包含有关缓存键的详细信息的数组,如果键不存在,则返回 null。

示例

示例 #1 A apcu_key_info() example

<?php
apcu_add('a','b');
var_dump(apcu_key_info('a'));
?>

以上示例会输出:

array(7) {
  ["hits"]=>
  int(0)
  ["access_time"]=>
  int(1606701783)
  ["mtime"]=>
  int(1606701783)
  ["creation_time"]=>
  int(1606701783)
  ["deletion_time"]=>
  int(0)
  ["ttl"]=>
  int(0)
  ["refs"]=>
  int(0)
}

参见

  • apcu_store() - 缓存一个变量到存储中
  • apcu_fetch() - Fetch a stored variable from the cache
  • apcu_delete() - Removes a stored variable from the cache


PHP8 apcu_inc
PHP8 apcu_sma_info
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定