码迷,mamicode.com
首页 > Web开发 > 详细

PHP匹配中文,匹配车牌号

时间:2019-09-28 12:54:58      阅读:149      评论:0      收藏:0      [点我收藏+]

标签: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,否则无法匹配。

PHP匹配中文,匹配车牌号

标签:mat   return   匹配   多字节   match   汉字   turn   fun   als   

原文地址:https://www.cnblogs.com/jiqing9006/p/11602414.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!