具体如下所示:
/*---------------------- 过滤HTML代码的函数 -----------------------*/ function htmlEncode($string) { $string=trim($string); $string=str_replace("&","&",$string); $string=str_replace("'","'",$string); $string=str_replace("&amp;","&",$string); $string=str_replace("&quot;",""",$string); $string=str_replace("\"",""",$string); $string=str_replace("&lt;","<",$string); $string=str_replace("<","<",$string); $string=str_replace("&gt;",">",$string); $string=str_replace(">",">",$string); $string=str_replace("&nbsp;"," ",$string); $string=nl2br($string); return $string; }
以上所述是小编给大家介绍的php下过滤HTML代码的函数,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
桃源资源网 Design By www.nqtax.com
暂无“php下过滤HTML代码的函数”评论...