Home > Backend Development > PHP Tutorial > thinkphp3.0 模板中函数的使用_PHP

thinkphp3.0 模板中函数的使用_PHP

WBOY
Release: 2016-06-01 12:09:21
Original
888 people have browsed it

ThinkPHP

变量的来源:

1 从php分配的变量,使用assign分配
2 系统变量
3 路径替换变量
不能使用函数的变量
变量输出快捷标签
{@var}//输出Session变量 和{$Think.session.var}等效
{#var}//输出Cookie变量 和{$Think.cookie.var}等效
{&var}//输出配置参数 和{$Think.config.var}等效
{%var}//输出语言变量 和{$Think.lang.var}等效
{.var}//输出Get变量 和{$Think.get.var}等效
{^var}//输出POST变量 和{$Think.post.var}等效
{*var}//输出常量 和{$Think.const.var}等效
{@var1.var2}//输出$_SESSION['var1']['var2']
{#var1.var2}//输出$_COOKIE['var1']['var2']

一 转换成大写 {$title|strtoupper}

模板变量的函数调用格式为:

复制代码 代码如下:
{$varname|function1|function2=arg1,arg2,### }


说明:
{ 和 $ 符号之间不能有空格 ,后面参数的空格就没有问题 ###表示模板变量本身的参数位置 支持多个函数,函数之间支持空格 支持函数屏蔽功能,在配置文件中可以配置禁止使用的函数列表 支持变量缓存功能,重复变量字串不多次解析
使用例子: X
复制代码 代码如下:
{$webTitle|md5|strtoupper|substr=0,3}
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template