位置: 编程技术 - 正文
推荐整理分享PHP APC函数:apc_exists()的用法(php aop),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:php aop,php axios,php的api,php aop,php的api,php axios,php的api,apcu php,内容如对您有帮助,希望把文章链接给更多的朋友!
(PECL apc >= 3.1.4)
apc_exists — 检查APC中是否存在某个或者某些key
说明 mixed apc_exists ( mixed $keys )检查是否有一个或者多个APC键名存在
参数keysstring,或者包含键的 array,元素是字符串。
返回值如果Key存在的话返回 TRUE , 否则返回 FALSE 如果参数 keys是一个array , 将返回一个包含所有存在的key的数组,假如数组中的key一个都不存在的话, 就返回空的数组。
范例Example #1 apc_exists() 例子
<?php$fruit='apple';$veggie='carrot';apc_store('foo',$fruit);apc_store('bar',$veggie);if(apc_exists('foo')){echo"Fooexists:";echoapc_fetch('foo');}else{echo"Foodoesnotexist";}echoPHP_EOL;if(apc_exists('baz')){echo"Bazexists.";}else{echo"Bazdoesnotexist";}echoPHP_EOL;$ret=apc_exists(array('foo','donotexist','bar'));var_dump($ret);?>以上例程的输出类似于:
参见 apc_cache_info() - Retrieves cached information from APC's data store apc_fetch() - 从缓存中取出存储的变量PHP APC函数:apc_delete()的用法 apc_delete(PECLapc=3.0.0)apc_delete从用户缓存中删除某个变量说明mixedapc_delete(string$key)从数据存储里删除某个变量。参数keykey即是你用apc_store()存储数据时所设
PHP APC函数:apc_clear_cache()的用法 apc_clear_cache(PECLapc=2.0.0)apc_clear_cache清除APC缓存说明boolapc_clear_cache([string$cache_type=])清除用户或者系统缓存参数cache_type如果cache_type是user,用户的缓存将被
PHP APC函数:apc_add()的用法 apc_add(PECLapc=3.0.)apc_add缓存一个变量到数据存储说明boolapc_add(string$key,mixed$var[,int$ttl=0])arrayapc_add(array$values[,mixed$unused=NULL[,int$ttl=0]])仅仅在缓存变量不存
标签: php aop
本文链接地址:https://www.jiuchutong.com/biancheng/281027.html 转载请保留说明!友情链接: 武汉网站建设