Pheasant\Cache\ArrayCache::get PHP 메소드

get() 공개 메소드

public get ( $hash )
    public function get($hash)
    {
        // hack to avoid an extra isset check
        $value = @$this->_cache[(string) $hash];
        return $value ? $value : false;
    }