欢迎各位兄弟 发布技术文章
这里的技术是共享的
在PHP中,htmlentities()
函数的反转义函数是html_entity_decode()
。该函数用于将HTML实体转换回其对应的字符。
以下是一个示例,展示了如何使用html_entity_decode()
函数将HTML实体转换回原始文本:
php复制代码$text = "This is a <strong>bold</strong> statement."; $output = html_entity_decode($text);
echo $output;
输出结果为:
css复制代码This is a <strong>bold</strong> statement.
在上述示例中,html_entity_decode()
函数将<
和>
实体转换回<
和>
字符,从而恢复了原始的文本内容。
希望这可以帮助到你!如果你还有其他问题,请随时提问。