PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

apcu_delete - Removes a stored variable from the cache | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

apcu_delete

(PECL apcu >= 4.0.0)

apcu_delete Removes a stored variable from the cache

説明

bool apcu_delete ( mixed $key )

Removes a stored variable from the cache.

パラメータ

key

A key used to store the value as a string for a single key, or as an array of strings for several keys, or as an APCUIterator object.

返り値

成功した場合に TRUE を、失敗した場合に FALSE を返します。

例1 A apcu_delete() example

<?php
$bar 
'BAR';
apcu_store('foo'$bar);
apcu_delete('foo');
// this is obviously useless in this form

// Alternatively delete multiple keys.
apcu_delete(['foo''bar''baz']);

// Or use an Iterator with a regular expression.
apcu_delete(new APCUIterator('#^myprefix_#'));
?>

参考


忘却曲線を使ってこの関数を確実に記憶に残す

フォーラムで「apcu_delete - Removes a stored variable from the cache」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | apcu_delete - Removes a stored variable from the cache」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: