phprs\util\ApcCache::get PHP 메소드

get() 공개 메소드

get
public get ( string $key, boolean &$succeeded ) : mixed
$key string
$succeeded boolean
리턴 mixed The stored variable or array of variables on success; false on failure
    public function get($key, &$succeeded)
    {
        return apc_fetch($key, $succeeded);
    }