apc_delete
(PECL apc >= 3.0.0)
apc_delete — 从用户缓存中删除某个变量
返回值
成功时返回 TRUE
, 或者在失败时返回 FALSE
。
范例
Example #1 A apc_delete() 范例
<?php
$bar = 'BAR';
apc_store('foo', $bar);
apc_delete('foo');
// this is obviously useless in this form
?>
(PECL apc >= 3.0.0)
apc_delete — 从用户缓存中删除某个变量
成功时返回 TRUE
, 或者在失败时返回 FALSE
。
Example #1 A apc_delete() 范例
<?php
$bar = 'BAR';
apc_store('foo', $bar);
apc_delete('foo');
// this is obviously useless in this form
?>