您的位置 首页 技术

PHP如何将HTML字符转义?

PHP如何将HTML字符转义? 在PHP中可以使用“htmlspecialchars()”函数将HTML字符转义,该函数的作用是将特殊字符转换为HTML实体,其用法为“htmlsp…

PHP如何将HTML字符转义?

在PHP中可以使用“htmlspecialchars()”函数将HTML字符转义,该函数的作用是将特殊字符转换为HTML实体,其用法为“htmlspecialchars($string)”,其参数“$string”代表待转换的字符。

推荐视频教程:《PHP编程从入门到精通(学习路线)》

示例

<?php$new = htmlspecialchars("<a href='test'>Test</a>", ENT_QUOTES);echo $new; // &lt;a href='test'&gt;Test&lt;/a&gt;?>
<?phpfunction fixtags($text){$text = htmlspecialchars($text);$text = preg_replace("/=/", "=\"\"", $text);$text = preg_replace("/&quot;/", "&quot;\"", $text);$tags = "/&lt;(\/|)(\w*)(\ |)(\w*)([\\\=]*)(?|(\")\"&quot;\"|)(?|(.*)?&quot;(\")|)([\ ]?)(\/|)&gt;/i";$replacement = "<$1$2$3$4$5$6$7$8$9$10>";$text = preg_replace($tags, $replacement, $text);$text = preg_replace("/=\"\"/", "=", $text);return $text;}?>an example:<?php$string = "this is smaller < than this<br />this is greater > than this<br />this is the same = as this<br /><a href=\"http://www.example.com/example.php?test=test\">This is a link</a><br /><b>Bold</b> <i>italic</i> etc...";echo fixtags($string);?>

推荐教程:《PHP》

以上就是PHP如何将HTML字符转义?的详细内容,更多请关注24课堂在线网其它相关文章!

本文来自网络,不代表24小时课堂在线立场,转载请注明出处:https://www.24ketang.cn/88153.html

为您推荐

返回顶部