移動:134、135、136、137、138、139、150、151、152、157、158、159、182、183、184、187、188、178(4G)、147(上網卡);
聯通:130、131、132、155、156、185、186、176(4G)、145(上網卡);
電信:133、153、180、181、189 、177(4G);
衛星通信:1349
虛擬運營商:170
/**
* 驗證手機號是否正確
* @author Zhangy
* @param INT $mobile
*/
function isMobile($mobile) {
if (!is_numeric($mobile)) {
return false;
}
return preg_match('#^13[\d]{9}$|^14[5,7]{1}\d{8}$|^15[^4]{1}\d{8}$|^17[0,6,7,8]{1}\d{8}$|^18[\d]{9}$#', $mobile) ? true : false;
}