php如何转换html标签,使其能在浏览器中正常显示?
在编程中需要把提交的内容转化成html标签,这样才能在浏览器中正常显示。
比如要把'<'转化成'<',把空格' '转换成' '等。
其实php已有这样的函数html_entity_decode。
例子:
复制代码 代码示例:
<?php
$new = htmlspecialchars("<a href='test'>Test</a>");
echo $new; //out <a href='test'>Test</a>
echo html_entity_decode($new); //out <a href='test'>Test</a>
?>