CacheTool\Proxy\ApcProxy::apc_delete PHP Метод

apc_delete() публичный Метод

Removes a stored variable from the cache
С версии: 3.1.1
public apc_delete ( mixed $key ) : mixed
$key mixed The key used to store the value (with apc_store()).
Результат mixed Returns TRUE on success or FALSE on failure.
    public function apc_delete($key)
    {
        $code = new Code();
        $code->addStatement(sprintf('return apc_delete(%s);', var_export($key, true)));
        return $this->adapter->run($code);
    }