系统变量输出

普通的模板变量需要首先赋值后才能在模板中输出,但是系统变量则不需要,可以直接在模板中输出,系统变量的输出通常以**{$think** 打头,例如:

{$think.server.script_name} // 输出$_server['script_name']变量
{$think.session.user_id} // 输出$_session['user_id']变量
{$think.get.pagenumber} // 输出$_get['pagenumber']变量
{$think.cookie.name}  // 输出$_cookie['name']变量

支持输出 $_server$_env、 $_post、 $_get、 $_request$_session和 $_cookie变量。

常量输出

还可以输出常量

{$think.const.app_path}

或者直接使用

{$think.app_path}

配置输出

输出配置参数使用:

{$think.config.default_module}
{$think.config.default_controller}

语言变量

输出语言变量可以使用:

{$think.lang.page_error}
{$think.lang.var_error}