CacheTool\Proxy\ApcProxy::apc_bin_dump PHP Method

apc_bin_dump() public method

Returns a binary dump of the given files and user variables from the APC cache. A NULL for files or user_vars signals a dump of every entry, whereas array() will dump nothing
Since: 3.1.4
public apc_bin_dump ( array $files = null, mixed $user_vars = null ) : mixed
$files array The files. Passing in NULL signals a dump of every entry, while passing in array() will dump nothing.
$user_vars mixed The user vars. Passing in NULL signals a dump of every entry, while passing in array() will dump nothing.
return mixed Returns a binary dump of the given files and user variables from the APC cache, FALSE if APC is not enabled, or NULL if an unknown error is encountered.
    public function apc_bin_dump(array $files = null, $user_vars = null)
    {
        $code = new Code();
        $code->addStatement(sprintf('return apc_bin_dump(%s, %s);', var_export($files, true), var_export($user_vars, true)));
        return $this->adapter->run($code);
    }