Query: apc_delete
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
APC_DELETE(3) 1 APC_DELETE(3) apc_delete - Removes a stored variable from the cacheSYNOPSISmixed apc_delete (string $key)DESCRIPTIONRemoves a stored variable from the cache.PARAMETERSo $key - The $key used to store the value (with apc_store(3)).RETURN VALUESReturns TRUE on success or FALSE on failure.EXAMPLESExample #1 A apc_delete(3) example <?php $bar = 'BAR'; apc_store('foo', $bar); apc_delete('foo'); // this is obviously useless in this form ?>SEE ALSOapc_store(3), apc_fetch(3). PHP Documentation Group APC_DELETE(3)