场景
网站的评论总是被俄语、西里尔语的自动评论提交,虽然有验证码,但依旧是成功提交,想到解决办法,评论的内容中必须有汉字,否则不允许提交。
正则
if(!preg_match('/\p{Han}+/u',$text,$match)){
// 屏蔽操作
}
当然还有另外一个正则表达式
if(!preg_match('/[\x{4e00}-\x{9fa5}]+/u',$text,$match)){
// 屏蔽操作
}
关于正则语言的说明:
http://www.regular-expressions.info/unicode.html