apcu_delete

(PECL apcu >= 4.0.0)

apcu_delete Removes a stored variable from the cache

Описание

mixed apcu_delete ( string $key )

Removes a stored variable from the cache.

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

key

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

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

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

Примеры

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

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

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

Коментарии

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.
2022-12-28 22:52:33
http://php5.kiev.ua/manual/ru/function.apcu-delete.html

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