예제 #1
0
파일: test.php 프로젝트: im286er/LuckyPHP
 protected function cookie()
 {
     Cookie::set('hello', 'world');
     echo Cookie::get('hello');
 }
예제 #2
0
파일: test.php 프로젝트: jasonshaw/LuckyPHP
 public function cookie()
 {
     Cookie::set('hello', 'world');
     echo Cookie::get('hello');
 }