🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# view获取Session 与Cookie的值 ## view模板文件里: ~~~ {$Think.session.user_name} //$Think.session.键 {$Think.cookie.age} //$Think.cookie.键 ~~~ ## index.php里的文件 ~~~ Session::set('user_name','张学友'); //设置Session值 Session::get('user_name'); //获取Session值 Cookie::set('age',58); //设置Cookie值 Session::get('age'); //获取Cookie值 return $this->fetch(); ~~~ # view 获取常量 ## view模板文件里: ``` {$Think.const.常量} ``` ## 代码案例: ~~~ <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div> {$Think.const.APP_PATH} </div> </body> ~~~ ## 输出: ![](https://img.kancloud.cn/d5/b8/d5b8070636bbc2e108b5dde37c89df80_763x198.png)