Manual PHP - Dokumentacja PHP - Zapraszamy!

apc_delete

(PECL)

apc_delete --  Removes a stored variable from the cache

Opis

bool apc_delete ( string key )

Parametry

key

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

Zwracane wartości

Zwraca TRUE w przypadku sukcesu, FALSE w przypadku poraĹĽki.

Przykłady

Przykład 1. A apc_delete() example

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

Patrz takĹĽe

apc_store()
apc_fetch()

LP:
Fatal error: Call to undefined function: show_links() in /home/httpd/vhosts/php.rek.waw.pl/httpdocs/index.php on line 69