MatthiasMullie\Scrapbook\Adapters\Apc::apcu_fetch PHP Method

apcu_fetch() protected method

protected apcu_fetch ( string | string[] $key, boolean &$success = null ) : mixed | false
$key string | string[]
$success boolean
return mixed | false
    protected function apcu_fetch($key, &$success = null)
    {
        if (function_exists('apcu_fetch')) {
            return apcu_fetch($key, $success);
        } else {
            return apc_fetch($key, $success);
        }
    }