MatthiasMullie\Scrapbook\Adapters\Apc::apcu_delete PHP Метод

apcu_delete() защищенный Метод

protected apcu_delete ( string | string[] | APCIterato\APCIterator | APCuIterato\APCuIterator $key ) : boolean | string[]
$key string | string[] | APCIterato\APCIterator | APCuIterato\APCuIterator
Результат boolean | string[]
    protected function apcu_delete($key)
    {
        if (function_exists('apcu_delete')) {
            return apcu_delete($key);
        } else {
            return apc_delete($key);
        }
    }