PHP字符串中特殊符号的过滤方法介绍
有时候我们会遇到过滤字符串中特殊字符的问题,本文提供了一个处理特殊字符串的方法,可能有遗漏,如果读者发现了可以留言告诉我,谢谢。
<div class="codetitle"><a style="CURSOR: pointer" data="23441" class="copybut" id="copybut23441" onclick="doCopy('code23441')"> 代码如下:
<div class="codebody" id="code23441">
function strFilter($str){
$str = str_replace('`','',$str);
$str = str_replace('·',$str);
$str = str_replace('~',$str);
$str = str_replace('!',$str);
$str = str_replace('!',$str);
$str = str_replace('@',$str);
$str = str_replace('#',$str);
$str = str_replace('$',$str);
$str = str_replace('¥',$str);
$str = str_replace('%',$str);
$str = str_replace('^',$str);
$str = str_replace('……',$str);
$str = str_replace('&',$str);
$str = str_replace('*',$str);
$str = str_replace('(',$str);
$str = str_replace(')',$str);
$str = str_replace('(',$str);
$str = str_replace(')',$str);
$str = str_replace('-',$str);
$str = str
replace('',$str);
$str = str_replace('——',$str);
$str = str_replace('+',$str);
$str = str_replace('=',$str);
$str = str_replace('|',$str);
$str = str_replace('\',$str);
$str = str_replace('[',$str);
$str = str_replace(']',$str);
$str = str_replace('【',$str);
$str = str_replace('】',$str);
$str = str_replace('{',$str);
$str = str_replace('}',$str);
$str = str_replace(';',$str);
$str = str_replace(';',$str);
$str = str_replace(':',$str);
$str = str_replace(':',$str);
$str = str_replace('\'',$str);
$str = str_replace('"',$str);
$str = str_replace('“',$str);
$str = str_replace('”',$str);
$str = str_replace(',',$str);
$str = str_replace(',',$str);
$str = str_replace('<',$str);
$str = str_replace('>',$str);
$str = str_replace('《',$str);
$str = str_replace('》',$str);
$str = str_replace('.',$str);
$str = str_replace('。',$str);
$str = str_replace('/',$str);
$str = str_replace('、',$str);
$str = str_replace('?',$str);
$str = str_replace('?',$str);
return trim($str);
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。