/** * 校验是否为手机号码 * @param string $mobile * @return boolean */ function is_mobile($mobile) { if(preg_match('#^13[\d]{9}$|14^[0-9]\d{8}|^15[0-9]\d{8}$|^18[0-9]\d{8}$#', trim($mobile))) { return true; }else{ return false; } }
posted on 2015-07-15 16:08 yhdsir 阅读(503) 评论(0) 编辑 收藏 举报