示例#1
0
文件: test.php 项目: im286er/LuckyPHP
 protected function session()
 {
     echo Session::set('hello', 'world');
     echo Session::get('hello');
     echo Session::isExist('hello');
     echo Session::clear();
 }
示例#2
0
 public function clearSession()
 {
     echo Session::clear();
 }