Exemplo n.º 1
0
 protected function session()
 {
     echo Session::set('hello', 'world');
     echo Session::get('hello');
     echo Session::isExist('hello');
     echo Session::clear();
 }
Exemplo n.º 2
0
 public function clearSession()
 {
     echo Session::clear();
 }