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

apcu_store() protected method

protected apcu_store ( string | string[] $key, mixed $var, integer $ttl ) : boolean | bool[]
$key string | string[]
$var mixed
$ttl integer
return boolean | bool[]
    protected function apcu_store($key, $var, $ttl = 0)
    {
        if (function_exists('apcu_store')) {
            return apcu_store($key, $var, $ttl);
        } else {
            return apc_store($key, $var, $ttl);
        }
    }