PHP htmlspecialchars 不工作

发布于 2024-10-19 02:12:28 字数 365 浏览 1 评论 0原文

<?php  
    $new = htmlspecialchars("<a href='test'>Test</a>", ENT_QUOTES);  
    echo $new;  
?>

输出应该是

& lt;a href=& #039;test& #039;&gt;Test& lt;/a& gt; 

但输出是

&lt;a href=&#039;test&#039;&gt;Test&lt;/a&gt;
<?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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

穿透光 2024-10-26 02:12:28

不用担心。 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文