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