htmlspecialchars_decode() 函數是 PHP 中的內置函數,可將特殊實體轉換回字符。
用法:
Sttring htmlspecialchars_decode( string $string, int $flags = ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401 )
Parameters: 該函數接受下麵討論的兩個參數:
- string: 要解碼的字符串。
- flags:以下一個或多個標誌的位掩碼,指定如何處理引號以及要使用的文檔類型。
返回值:該函數返回解碼後的字符串。
示例 1:此示例說明了htmlspecialchars_decode() 函數。
PHP
<?php
$str = "<p>this -> "</p>\n";
echo htmlspecialchars_decode($str);
?>
輸出
<p>this -> "</p>
程序2:此示例說明了htmlspecialchars_decode() 函數。
PHP
<?php
$str = "<p>this -> "</p>\n";
echo htmlspecialchars_decode($str, ENT_NOQUOTES);
?>
輸出
<p>this -> "</p>\
參考:https://www.php.net/manual/en/function.htmlspecialchars-decode.php
相關用法
- PHP htmlspecialchars_decode()用法及代碼示例
- PHP htmlspecialchars()用法及代碼示例
- PHP html_entity_decode()用法及代碼示例
- PHP htmlentities()用法及代碼示例
- PHP htmlentities() vs htmlspecialchars()用法及代碼示例
- PHP http_build_query()用法及代碼示例
- PHP hexadec()用法及代碼示例
- PHP hash()用法及代碼示例
- PHP hexdec()用法及代碼示例
- PHP hebrevc()用法及代碼示例
- PHP hash_copy()用法及代碼示例
- PHP hash_equals()用法及代碼示例
- PHP hash_file( )用法及代碼示例
- PHP hash_final()用法及代碼示例
- PHP hash_hmac()用法及代碼示例
- PHP hash_hmac_algos()用法及代碼示例
- PHP hash_hmac_file()用法及代碼示例
- PHP hash_pbkdf2()用法及代碼示例
- PHP header()用法及代碼示例
- PHP headers_list()用法及代碼示例
- PHP headers_sent()用法及代碼示例
- PHP hex2bin()用法及代碼示例
- PHP highlight_file()用法及代碼示例
- PHP hrtime()用法及代碼示例
- PHP hypot()用法及代碼示例
注:本文由純淨天空篩選整理自neeraj3304大神的英文原創作品 PHP htmlspecialchars_decode() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。