搜索

首页  >  问答  >  正文

缓存问题,else中的语句执行正常, if($cache)中的出现截图错误?求大神

public function train_surp(){
        $cache=Cache::get('train_surp');
        if($cache){
            $this->assign('list',unserialize( $cache));
        }
        else{
            $retult=train::paginate(5);
            Cache::set('train_surp',$retult,10);
            $ list=Cache::get('train_surp');
            $this->assign('list',$list);
        }
        return $this->fetch();
}QQ截图20171110201309.png

王岁洋王岁洋2605 天前1037

全部回复(3)我来回复

  • myfey

    myfey2017-11-27 14:12:28

     if($cache){

    中的$cache应该是对象类型

    if(这里是布尔值得判断 无法判断对象类型的)



    回复
    0
  • PHP中文网

    PHP中文网2017-11-11 09:30:52

    没看出来你具体问的是什么?

    回复
    0
  • 取消回复