apc_fetch
apc_fetch
(PECL apc >= 3.0.0)
apc_fetch - 从缓存中获取存储的变量
描述
mixed apc_fetch ( mixed $key [, bool &$success ] )
从缓存中获取存储的变量。
参数
key
所述key
用于存储的值(以apc_store())。如果传递数组,则每个元素都被提取并返回。
success
成功时设置TRUE
和失败时设置FALSE
。
返回值
成功时存储变量或变量数组;失败时返回FALSE
示例
Example #1 A apc
_
fetch() example
<?php
$bar = 'BAR';
apc_store('foo', $bar
var_dump(apc_fetch('foo')
?>
上面的例子将输出:
string(3) "BAR"
Changelog
版本 | 描述 |
---|---|
3.0.17 | 添加了成功参数。 |
See Also
- apc_store() - 缓存数据存储中的变量
- apc_delete() - 从缓存中删除存储的变量
- APCIterator
← apc_exists
apc_inc →