PHP
·
发表于 5年以前
·
阅读量:8292
function isTel(value) {
return /^1[3,4,5,6,7,8,9][0-9]{9}$/.test(value.toString());
}