转义:将字符转换为 HTML 转义字符
<?php
$str = "This is some <b>bold</b> text.";
echo htmlspecialchars($str);
?>
更多功能选项可使用 htmlentities 函数
运行结果:实体字符
This is some <b>bold</b> text.
解码:将 HTML 实体转换为其对应的字符
<?php
$str = "This is some <b>bold</b> text.";
echo htmlspecialchars_decode($str);
?>
更多功能选项可使用 html_entity_decode 函数
运行结果:特殊字符
This is some <b>bold</b> text.
友情提示:本站所有文章,如无特殊说明或标注,均为何星星原创发布。与此同时,趋于近年来本站的文章内容频繁被他站盗用与机器采集,现已全局禁用网站文字内容操作,了解详情或转载文章请 点此 继续!
0 条评论