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

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

Deletes files from the opcode cache
С версии: 3.1.1
public apc_delete_file ( mixed $keys ) : mixed
$keys mixed The files to be deleted. Accepts a string, array of strings, or an APCIterator object.
Результат mixed Returns TRUE on success or FALSE on failure. Or if keys is an array, then an empty array is returned on success, or an array of failed files is returned.
    public function apc_delete_file($keys)
    {
        $code = new Code();
        $code->addStatement(sprintf('return apc_delete_file(%s);', var_export($keys, true)));
        return $this->adapter->run($code);
    }