CacheTool\Proxy\ApcProxy::apc_delete_file PHP Method

apc_delete_file() public method

Deletes files from the opcode cache
Since: 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.
return 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);
    }