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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。