Smarty:escape

2018-10-12 15:31 更新

escape

escape可用于将变量编码或转换成 htmlurl单引号十六进制十六进制实体javascript和 电邮地址。 默认是:html

参数顺序类型必选参数允许取值默认值说明
1stringNohtmlhtmlallurl,urlpathinfo单引号十六进制,十六进制实体javascript电邮地址html这是escape转换后的格式
2stringNoISO-8859-1UTF-8, 和其他htmlentities()支持的字符集UTF-8传递给htmlentities()的字符集类型
3booleanNoFALSETRUE两次转换实体,& 到 & (仅在html 和 htmlall 使用)

Example 5.10. escape

<?php

$smarty->assign('articleTitle',
                "'Stiff Opposition Expected to Casketless Funeral Plan'"
                );
$smarty->assign('EmailAddress','smarty@example.com');

?>

下面是escape的例子和输出:

{$articleTitle}
'Stiff Opposition Expected to Casketless Funeral Plan'

{$articleTitle|escape}
&#039;Stiff Opposition Expected to Casketless Funeral Plan&#039;

{$articleTitle|escape:'html'}    {* escapes  & " ' < > *}
&#039;Stiff Opposition Expected to Casketless Funeral Plan&#039;

{$articleTitle|escape:'htmlall'} {* escapes ALL html entities *}
&#039;Stiff Opposition Expected to Casketless Funeral Plan&#039;

<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">&#x62;&#x6f;&#x62..snip..&#x65;&#x74;</a>

{'mail@example.com'|escape:'mail'}
smarty [AT] example [DOT] com

Example 5.11. escape的另一个例子

{*  "rewind"参数是当前URL地址 *}
<a href="$my_path?page=foo&rewind=$my_uri|urlencode}">click here</a>

这个方法很适合用在电邮地址上,另外可以参见 {mailto}

{* 电邮地址编码 *}
<a href="mailto:{$EmailAddress|escape:'hex'}">{$EmailAddress|escape:'mail'}</a>

参见 Smarty编译转换, {mailto} 和 混淆电邮地址。

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号