标签:mat return 匹配 多字节 match 汉字 turn fun als
/**
* 车牌号
* 字母全部大写
* @param $str
* @return string
*/
public static function checkCar($str)
{
$pattern = '/^[\x{4e00}-\x{9fa5}]{1}[A-Z]{1}[A-Z_0-9]{5}$/u'; // u 表示按unicode(utf-8)匹配(主要针对多字节比如汉字)
// $pattern = '/^[\x{4e00}-\x{9fa5}]{1}$/u'; // u 表示按unicode(utf-8)匹配(主要针对多字节比如汉字)
if (preg_match($pattern, $str)) {
return true;
} else {
return false;
}
}
一定要加u,否则无法匹配。
标签:mat return 匹配 多字节 match 汉字 turn fun als
原文地址:https://www.cnblogs.com/jiqing9006/p/11602414.html