Heim  >  Fragen und Antworten  >  Hauptteil

Caching-Problem: Die Anweisung in else wird normal ausgeführt, aber in if($cache)? tritt ein Screenshot-Fehler auf. Frag Gott

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

王岁洋王岁洋2558 Tage vor990

Antworte allen(3)Ich werde antworten

  • myfey

    myfey2017-11-27 14:12:28

     if($cache){

    中的$cache应该是对象类型

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



    Antwort
    0
  • PHP中文网

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

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

    Antwort
    0
  • StornierenAntwort