apcu_delete
(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_#'));
?>
参考
- apcu_store() - 変数をデータ領域にキャッシュする
- apcu_fetch() - 格納されている変数をキャッシュから取得する
- apcu_clear_cache() - APCu キャッシュをクリアする
- APCUIterator
+add a note
User Contributed Notes 1 note
ywarnier at beeznest dot org ¶
2 years ago
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.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google