标签:
/**
* 校验是否为手机号码
* @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;
}
}
标签:
原文地址:http://www.cnblogs.com/yhdsir/p/4648651.html