我知道我可以使用htmlentities
转换html/php
代码并在浏览器中显示它们。
我也知道preg_match
要从字符串中删除< code> < /code>
。
我想知道评论系统在大多数网站中是如何工作的,包括stackoverflow
当用户输入评论时,他们可以放置任意数量的< pre>< /pre>
或< code>< /code>
块,当我想在浏览器中显示这些评论时,我想只将标签内的那些部分替换为代码。我不想使用htmlentities来显示完整的评论
This is a single comment entered by a user
here is a text that < br> < em>I want to show as html < /em>
< code>< ? php code goes here ?> </ code>
User write something else here
< code>< ? php second code goes here ?> </ code>
我应该如何保存并在浏览器中显示以上内容,以便html显示为html,代码部分显示为普通文本