$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>");
}