PHP功能函数-验证否为中文

我们在开发过程中,需要验证中文是否符合规则,下面提供判验证中文的函数给到大家。

1
2
3
4
5
6
7
8
9
//检查是否为中文
if (!function_exists('isCn')){
	function isCn($str){
		if(preg_match("/[\x{4e00}-\x{9fa5}]+/u", $str)) {
			return true;
		}
		return false;
	}
}