这篇文章介绍的内容是关于php安全过滤 ,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
安全的过滤函数:
function filter($input){ $input=strip_tags(trim($input)); $input=htmlentities($input,ENT_QUOTES,'UTF-8'); $input=str_ireplace( array('\\','script','expression'), array('\','script','expression') ); return $input; }
相关推荐:
The above is the detailed content of php security filtering. For more information, please follow other related articles on the PHP Chinese website!