Heim > Fragen und Antworten > Hauptteil
$str = "A 'quote' is <b>bold</b>";
// 输出: A 'quote' is <b>bold</b>
echo htmlentities($str);
官网的例子,为什么我使用的时候,页面上还是显示A 'quote' is bold而不是注释里的内容
淡淡烟草味2017-05-16 13:07:25
运行结果没问题 因为 这种字符串 ‘<’ 被浏览器解析了 ;如果你真的想这么输出
<?php
$str = "A 'quote' is <b>bold</b>";
// 输出: A 'quote' is <b>bold</b>
echo htmlentities(htmlentities($str)).'<br>';