laravel 自定义 检查 session 数据是否存在

// vendor/laravel/framework/src/Illuminate/Session/Store.php
// 添加下面方法,然后在需要的地方,Session::hasSession()
     public function hasSession(){
         return !empty($this->readFromHandler()) ? true : false;
     }

 

你可能感兴趣的:(laravel 自定义 检查 session 数据是否存在)