php判断手机号码是否正确
function whether_is_telephone($telephone){ if(preg_match("/^1[34578]{1}\d{9}$/", $telephone)){ return true; }else{ return false; } }
function whether_is_telephone($telephone){ if(preg_match("/^1[34578]{1}\d{9}$/", $telephone)){ return true; }else{ return false; } }