汉字正则

$str = "汉字";
if (!preg_match_all("/^[\p{Han}]+$/u", $str, $match)) {
	//全是汉字
}