php 联系电话验证(手机和固话)
$tel='要验证的联系电话'; $isMob="/^1[3-5,8]{1}[0-9]{9}$/"; $isTel="/^([0-9]{3,4}-)?[0-9]{7,8}$/"; if(!preg_match($isMob,$tel) && !preg_match($isTel,$tel)) { exit("<script>alert('联系电话格式不正确!');window.history.go(-1);window.location.replace(document.referrer);</script>"); }
本文来自博客园,作者:Bin_x,转载请注明原文链接:https://www.cnblogs.com/Bin-x/p/4169541.html