学堂 学堂 学堂公众号手机端

php中的htmlspecialchars_decode怎么用

lewis 2年前 (2023-04-13) 阅读数 5 #技术

htmlspecialchars_decode函数用于将HTML实体转换为普通字符。它的用法如下:

string htmlspecialchars_decode ( string $string [, int $flags = ENT_COMPAT | ENT_HTML401 [, string $encoding = ini_get("default_charset") ]] )

其中,string是要转换的字符串,flags是可选参数,用于指定转换的规则,encoding是可选参数,用于指定输出的字符编码。

示例代码如下:


$str = "This is a <b>bold</b> text.";
echo htmlspecialchars_decode($str);

这段代码将输出:

This is a <b>bold</b> text.
版权声明

本文仅代表作者观点,不代表博信信息网立场。

热门