CacheEngine_APC::hasValueKey PHP Метод

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

Returns true if a value identified by the given key was stored in the cache.
public hasValueKey ( $p_key ) : mixed
Результат mixed
    public function hasValueKey($p_key)
    {
        return apc_fetch($p_key) !== false;
    }