Home >Backend Development >PHP Tutorial >thinkPHP html 模版文件 的大括号,怎么转义?

thinkPHP html 模版文件 的大括号,怎么转义?

WBOY
WBOYOriginal
2016-06-06 20:06:321656browse

就是{$name}这种,我想输入一个字符串,不是真正的PHP变量,

怎么转义?我试了试用 \{$name\}不行..

回复内容:

就是{$name}这种,我想输入一个字符串,不是真正的PHP变量,

怎么转义?我试了试用 \{$name\}不行..

  1. 改变默认的开始标记和结束标记 参考链接

    <code>    'TMPL_L_DELIM'=>''}>',</code>
  2. 可以使用literal标签来防止模板标签被解析 参考链接

    <code>    <literal>{$name}</literal></code>

如果$name不是变量的话,那它也得转义吧

<code>\{\$name\}</code>
Statement:
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