apcu_delete
PHP function
Edit on GitHub ✎
(PECL apcu >= 4.0.0)
Removes a stored variable from the cache
Description
apcu_delete(mixed $key): mixed
Removes a stored variable from the cache.
Parameters
keyA
keyused to store the value as astringfor a single key, or as anarrayof strings for several keys, or as anAPCUIteratorobject.
Return Values
If key is an Array, an indexed Array of the keys is returned. Otherwise true is returned on success, or false on failure.
Examples
A apcu_delete() example
php
<?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_#'));
?>See Also
apcu_store()apcu_fetch()apcu_clear_cache()APCUIterator