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