Smarty 是什么?
它的有用之处?
用例和工作流
语法比较
模板继承
最佳实践
突击课程
escape
用于将变量编码或转义为 html
、url
、单引号
、hex
、hexentity
、javascript
和 mail
。它的默认值为 html
。
参数位置 | 类型 | 必需 | 可能值 | 默认值 | 说明 |
---|---|---|---|---|---|
1 | 字符串 | 否 |
html 、htmlall 、url 、urlpathinfo 、quotes 、hex 、hexentity 、javascript 、mail |
html |
这是要使用的转义格式。 |
2 | 字符串 | 否 |
ISO-8859-1 、UTF-8 以及 htmlentities() 支持的任何字符集 |
UTF-8 |
传递给 htmlentities() 等的字符集编码。 |
3 | 布尔值 | 否 | FALSE |
TRUE |
将实体从 & 双重编码成 &(仅适用于 html 和 htmlall ) |
示例 5.10. 转义
<?php $smarty->assign('articleTitle', "'Stiff Opposition Expected to Casketless Funeral Plan'" ); $smarty->assign('EmailAddress','[email protected]'); ?>
以下是示例 escape
模板行,后面跟输出
{$articleTitle} 'Stiff Opposition Expected to Casketless Funeral Plan' {$articleTitle|escape} 'Stiff Opposition Expected to Casketless Funeral Plan' {$articleTitle|escape:'html'} {* escapes & " ' < > *} 'Stiff Opposition Expected to Casketless Funeral Plan' {$articleTitle|escape:'htmlall'} {* escapes ALL html entities *} 'Stiff Opposition Expected to Casketless Funeral Plan' <a href="?title={$articleTitle|escape:'url'}">click here</a> <a href="?title=%27Stiff%20Opposition%20Expected%20to%20Casketless%20Funeral%20Plan%27">click here</a> {$articleTitle|escape:'quotes'} \'Stiff Opposition Expected to Casketless Funeral Plan\' <a href="mailto:{$EmailAddress|escape:"hex"}">{$EmailAddress|escape:"hexentity"}</a> {$EmailAddress|escape:'mail'} {* this converts to email to text *} <a href="mailto:%62%6f%..snip..%65%74">bob..snip..et</a> {'[email protected]'|escape:'mail'} smarty [AT] example [DOT] com
示例 5.11. 其他示例
{* the "rewind" parameter registers the current location *} <a href="$my_path?page=foo&rewind=$my_uri|urlencode}">click here</a>
此代码段对于电子邮件很有用,但也可以参见 {mailto}
{* email address mangled *} <a href="mailto:{$EmailAddress|escape:'hex'}">{$EmailAddress|escape:'mail'}</a>
另请参见 转义 Smarty 解析、 {mailto}
和 混淆电子邮件地址 页面。