예제 #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
파일: test.php 프로젝트: jasonshaw/LuckyPHP
 public function isExistSession()
 {
     echo Session::isExist('hello');
 }