特定元素的 PHP HTMLEntities
我正在使用 htmlentites() 来用安全的 html(即 PHP)替换字符,因为我希望能够显示 PHP 示例。我遇到的问题是所有标签都被替换(例如: 、
等)。我知道我可以编写一个自定义 htmentities 来仅替换 标签和其他特定的 xml 标签,但我想知道 PHP 中是否有某些东西已经做到了这一点?
I am working with htmlentites()
to replace characters with safe html, namely the PHP because I want to be able to show PHP examples. The problem I am running into is all the tags are replaced (ex: </p>
, </br>
etc). I know I can write a custom htmentities to only replace the <?
tags and other specific xml tags but I was wondering is there something in PHP that already does this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会在 PHP 中使用
highlight_string()
函数 因为它将转义字符和语法突出显示代码。I would use the
highlight_string()
function in PHP as it will escape the characters and syntax highlight the code.