ZBlogPHP::LoadCache PHP Method

LoadCache() public method

加载缓存
public LoadCache ( ) : boolean
return boolean
    public function LoadCache()
    {
        #$s=$this->usersdir . 'cache/' . $this->guid . '.cache';
        #if (file_exists($s))
        #{
        #	$this->cache=unserialize(@file_get_contents($s));
        #}
        $this->cache = $this->Config('cache');
        $this->cache_hash = md5($this->Config('cache'));
        return true;
    }
ZBlogPHP