Smarty 图标

您可以根据 商标声明使用 Smarty 徽标。

Smarty Template Engine Smarty Template Engine

如需赞助、广告、新闻或其他询问,请通过以下方式联系我们

使用 Smarty 的网站

广告

unescape

unescape 用于解码 entityhtmlhtmlall。它针对给定类型抵消 escape 修饰符 的效果。

参数位置 类型 必需 可能的值 默认值 说明
1 字符串 htmlhtmlallentity html 这是要使用的转义格式。
2 字符串 ISO-8859-1UTF-8 以及 htmlentities() 支持的任何字符集 UTF-8 传递给 html_entity_decode() 或 htmlspecialchars_decode() 或 mb_convert_encoding() 等的字符集编码。

示例 5.22 escape

<?php

$smarty->assign('articleTitle',
                "Germans use &quot;&Uuml;mlauts&quot; and pay in &euro;uro"
                );

?>

   

以下是示例 unescape 模板行,后跟输出

{$articleTitle}
Germans use &quot;&Uuml;mlauts&quot; and pay in &euro;uro

{$articleTitle|unescape:"html"}
Germans use "&Uuml;mlauts" and pay in &euro;uro

{$articleTitle|unescape:"htmlall"}
Germans use "Ümlauts" and pay in €uro

   

另请参阅 Escaping Smarty 解析escape 修饰符