PHP htmlspecialchars 不工作
<?php
$new = htmlspecialchars("<a href='test'>Test</a>", ENT_QUOTES);
echo $new;
?>
输出应该是
& lt;a href=& #039;test& #039;>Test& lt;/a& gt;
但输出是
<a href='test'>Test</a>
<?php
$new = htmlspecialchars("<a href='test'>Test</a>", ENT_QUOTES);
echo $new;
?>
output should be
& lt;a href=& #039;test& #039;>Test& lt;/a& gt;
but output is
<a href='test'>Test</a>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不用担心。 htmlspecialchars() 正在编码 和>字符正确。只是当您将编码的字符串回显到计算机屏幕时,浏览器会再次对字符进行解码。如果您查看页面源代码,您将看到编码的字符串。
Don't worry. htmlspecialchars() is encoding the < and > characters properly. It is just that when you echo the encoded string to your computer screen, your browser helpfully decodes the characters again. If you view the page source you will see the encoded string.