apcu_fetch
apcu_fetch
(PECL apcu >= 4.0.0)
apcu_fetch - 从缓存中获取存储的变量
描述
mixed apcu_fetch ( mixed $key [, bool &$success ] )
从缓存中获取条目。
参数
key
所述key
用于存储的值(以 apcu_store() )。如果传递数组,则每个元素都被提取并返回。
success
设置TRUE
成功和FALSE
失败。
返回值
成功存储的变量或变量数组; FALSE
失败
例子
Example #1 A apcu
_
fetch() example
<?php
$bar = 'BAR';
apcu_store('foo', $bar
var_dump(apcu_fetch('foo')
?>
上面的例子将输出:
string(3) "BAR"
Changelog
Version | Description |
---|---|
3.0.17 | The success parameter was added. |