验证中文字符串正则表达式为:/^[x{4e00}-x{9fa5}]+$/u
$str="个人博客";
if(preg_match("/^[x{4e00}-x{9fa5}]+$/u",$str)){
echo‘皆为中文’;
}else{
echo‘不完全是中文’;
}
php中常用到的验证方法:
preg_match(mode,stringsubject,arraymatches);
ereg(mode,stringsubject,arrayregs);
mode:正则表达式(preg_match中的