显示php& html代码作为浏览器中的代码

时间:2015-08-05 15:05:59

标签: php html

我知道我可以使用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,代码部分显示为普通文本

0 个答案:

没有答案