// 去除英文 数字//$q = preg_replace('|[0-9a-zA-Z/]+|','',$q);
// 匹配中文和字母
preg_match_all('/[\x{4e00}-\x{9fff}a-zA-Z]+/u', $q, $matches);
// 去除英文 数字//$q = preg_replace('|[0-9a-zA-Z/]+|','',$q);
// 匹配中文和字母
preg_match_all('/[\x{4e00}-\x{9fff}a-zA-Z]+/u', $q, $matches);