codecamp

PHP8 apcu_fetch

(PECL apcu >= 4.0.0)

apcu_fetch — 从缓存中获取存储的变量

说明

apcu_fetch(mixed $key, bool &$success = ?): mixed

从缓存中获取条目。

参数

key

用于存储值的 ​key​(使用 apcu_store())。如果传递数组,则获取并返回每个元素。

success

成功时设置为 ​true​,失败时设置为 ​false​。

返回值

成功时存储的变量或变量数组;失败时为假

更新日志

版本 说明
PECL apcu 3.0.17 The success parameter was added.

示例

示例 #1 A apcu_fetch() example

<?php
$bar = 'BAR';
apcu_store('foo', $bar);
var_dump(apcu_fetch('foo'));
?>

以上示例会输出:

string(3) "BAR"

参见

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


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