tp5杂技

1. 使用 session等系统变量

php
session('email', '[email protected]');

{$Think.server.HTTP_HOST}

{$Think.env.php_status}

{$Think.session.email}

{$Think.cookie.name}

{$Think.get.id}

{$Think.request.id}

{$Think.post.id}

{$Think.const.APP_PATH}

{$Think.APP_PATH}

$b){ echo '1'; }else{ echo '2'; } ?>

2. 模板中的注释, 这样的话, 页面中不会出现

{/* 这里是view的注释 */}

3. 获取当前模块,控制器,方法

$request->module();
$request->controller();
$request->action();

4. tp5数组, 赋值到模板中的js数组

{:json_encode($arr_name_str)}

$arr_name_str 是一个一维数组.

 

你可能感兴趣的:(thinkphp)