摘要: 1 public function is_phone($phone) 2 { 3 if (preg_match("/^1[34578]{1}\d{9}$/", $phone)) { 4 return true; 5 }else{ 6 return false; 7 } 8 } 阅读全文
posted @ 2018-05-09 14:22 Sparking丶 阅读(205) 评论(0) 推荐(0) 编辑