技术文章
php验证手机号,添加166、198、199号段
发布日期:2019-07-22 阅读次数:2294 字体大小:
// 验证手机号函数
function chkmobile($mobilephone)
{
    if (preg_match('/^((13[0-9])|(14[5,7])|(15[0-3,5-9])|(17[0,3,5-8])|(18[0-9])|166|198|199|(147))\d{8}$/', $mobilephone)) {
        return true;
    } else {
        return false;
    }
}