apc_delete

(PECL apc >= 3.0.0)

apc_delete Removes a stored variable from the cache

Описание

mixed apc_delete ( string $key )

Removes a stored variable from the cache.

Список параметров

key

The key used to store the value (with apc_store()).

Возвращаемые значения

Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.

Примеры

Пример #1 A apc_delete() example

<?php
$bar 
'BAR';
apc_store('foo'$bar);
apc_delete('foo');
// this is obviously useless in this form
?>

Смотрите также

Коментарии

To clear out the whole APC user cache:

<?php
$info 
apc_cache_info("user");
foreach (
$info['cache_list'] as $obj) {
   
apc_delete($obj['info']);
    print 
'Deleted: ' $obj['info'] . PHP_EOL;
}
?>
2010-06-03 09:26:25
http://php5.kiev.ua/manual/ru/function.apc-delete.html
Автор:
Contrary to what's documented here - apc_delete also accepts and array of keys or even an APCIterator object, making batch operations a breeze (tested in version 3.1.3p1):

<?php

function showCache() {
   
$cachedKeys = new APCIterator('user''/^MY_APC/'APC_ITER_VALUE);
   
    echo 
"\nkeys in cache\n-------------\n";
    foreach (
$cachedKeys AS $key => $value) {
        echo 
$key "\n";
    }
    echo 
"-------------\n";
}

apc_add('MY_APC_TESTA_1','1');
apc_add('MY_APC_TESTA_2','2');
apc_add('MY_APC_TESTA_3','3');
apc_add('MY_APC_TESTB_4','4');
apc_add('MY_APC_TESTB_5','5');
apc_add('MY_APC_TESTB_6','6');

showCache();

/* outputs:

keys in cache
-------------
MY_APC_TESTB_4
MY_APC_TESTB_5
MY_APC_TESTB_6
MY_APC_TESTA_1
MY_APC_TESTA_2
MY_APC_TESTA_3
-------------
*/

// delete all keys beginning with a regex match on MY_APC_TESTA
$toDelete = new APCIterator('user''/^MY_APC_TESTA/'APC_ITER_VALUE);

var_dumpapc_delete($toDelete) ); 
// returns boolean true|false on success or failure

showCache();

/* outputs:

boolean true

keys in cache
-------------
MY_APC_TESTB_4
MY_APC_TESTB_5
MY_APC_TESTB_6
-------------
*/

// explicitly delete an array of keys 
var_dumpapc_delete( array('MY_APC_TESTB_4','MY_APC_TESTB_5','MY_APC_NOT_EXISTS')) );
// returns an array of keys that where not found/removed from the cache

showCache();

/* outputs:

array
  0 => string 'MY_APC_NOT_EXISTS' (length=17)

keys in cache
-------------
MY_APC_TESTB_6
-------------
*/

// delete a single key
var_dumpapc_delete('MY_APC_TESTB_6') );
// returns boolean true|false on success or failure

showCache();

/* outputs:

boolean true

keys in cache
-------------
-------------
*/
?>
2011-01-11 11:25:36
http://php5.kiev.ua/manual/ru/function.apc-delete.html
Автор:
To clarify "FALSE on failure", apc_delete on a key that does not exist will return FALSE; in other words, it's not just a test to see if APC works.
2015-01-26 14:08:44
http://php5.kiev.ua/manual/ru/function.apc-delete.html

    Поддержать сайт на родительском проекте КГБ