Calling apcu_delete() on an unexisting cached variable name doesn't generate a NOTICE (nor WARNING), making it safe to use if unsure of the state of that variable.
(PECL apcu >= 4.0.0)
apcu_delete — 格納されている変数をキャッシュから取り除く
例1 apcu_delete() の例
<?php
$bar = 'BAR';
apcu_store('foo', $bar);
apcu_delete('foo');
// もちろん、このような使い方は無意味
// 複数のキーを削除することもできます。
apcu_delete(['foo', 'bar', 'baz']);
// または、正規表現とともに Iterator を使用します。
apcu_delete(new APCUIterator('#^myprefix_#'));
?>
Calling apcu_delete() on an unexisting cached variable name doesn't generate a NOTICE (nor WARNING), making it safe to use if unsure of the state of that variable.