PHP8 apcu_key_info

2023-08-28 15:54 更新

(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


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号