PHP - HTML实体解码函数



语法

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

定义和用法

用于将HTML实体转换为其对应的字符。

返回值

返回解码后的字符串。

参数

序号 参数及描述
1

字符串

包含输入字符串的信息。

2

标志

包含标志信息。

示例

尝试以下示例

<?php
   $input = "tutorials \"point\" simply <b>easy</b> learning";
   $ab = htmlentities($input);
   $b = html_entity_decode($ab);
   
   echo $ab;
?>

这将产生以下结果:

tutorials "point" simply <b>easy</b> learning
php_function_reference.htm
广告