php过滤微信特殊字符方案--》2017新版

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php过滤微信特殊字符方案--》2017新版相关的知识,希望对你有一定的参考价值。

/**
* 过滤特殊字符
* @param unknown $str
*/
private function filterStr($str)
{
if($str){
$name = $str;
$name = preg_replace_callback(‘/\xEE[\x80-\xBF][\x80-\xBF]|\xEF[\x81-\x83][\x80-\xBF]/‘,function ($matches) { return ‘‘;}, $name);
$name = preg_replace_callback(‘/xE0[x80-x9F][x80-xBF]‘.‘|xED[xA0-xBF][x80-xBF]/S‘,function ($matches) { return ‘‘;}, $name);
$name = json_encode($name);
$name = preg_replace_callback("/\\\ud[0-9a-f]{3}/i", function ($matches) { return ‘‘;}, $name);
if(!empty($name))
{
$name = json_decode($name);
return $name;
}else{
return ‘‘;
}

}else{
return ‘‘;
}
}
























以上是关于php过滤微信特殊字符方案--》2017新版的主要内容,如果未能解决你的问题,请参考以下文章

PHP怎样过滤中文状态下特殊字符(比如标点符号)?

php文件字​​符编码、mysql数据库字符编码、特殊字符

PHP对表单提交特殊字符的过滤和处理

PHP对表单提交特殊字符的过滤和处理

php 如何过滤 单引号 双引号 $ < > 等N种特殊符号?谢谢

函数stripslashes去除转义 shopnc 搜索框过滤特殊字符 输入单斜杆会自动转义