Smarty:unescape

2018-10-12 15:52 更新

unescape

unescape可以解碼entityhtml 和 htmlall等的編碼。 它與escape 修飾器的效果剛好相反。

參數(shù)順序類型必選參數(shù)允許取值默認值說明
1stringNohtmlhtmlall,entity,html解碼的類型
2stringNoISO-8859-1UTF-8, 或者任何 htmlentities()可以支持的字符集。UTF-8傳遞給html_entity_decode() 、 htmlspecialchars_decode() 或 mb_convert_encoding()的字符集

Example 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

參見 Smarty編譯轉(zhuǎn)換, escape 修飾器.

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號