正则大全

php

1.匹配数字大小写字母中文

        if (preg_match("/^[A-Za-z0-9\x{4e00}-\x{9fa5}]+$/u", $name)) { //字母,数字,中文 1个或多个
            return true
        }


你可能感兴趣的:(正则大全)