1.判断字符串中是否含有中文
preg_match("/[\x7f-\xff]/", $param['chirld_auth_scope']
例子:
if (preg_match("/[\x7f-\xff]/", $str)) {
//echo "有中文";
}else{
//echo "没有中文";
}
持续更新中。。。
1.判断字符串中是否含有中文
preg_match("/[\x7f-\xff]/", $param['chirld_auth_scope']
if (preg_match("/[\x7f-\xff]/", $str)) {
//echo "有中文";
}else{
//echo "没有中文";
}
持续更新中。。。