选择语言 :

 Core_Model::get_cache_data

null Core_Model::get_cache_data( )
File: ./core/classes/model.class.php
protected function get_cache_data()
{
    $key = $this->_get_cache_key(new Exception(), 1);
    if (true===$this->_clear_cache_data_mode)
    {
        # 清除模式
        $this->cache()->delete($key);
        return 1;
    }
    else
    {
        return $this->cache()->get($key);
    }
}