php 邮箱,网址,手机号码合法性正则

关于PHP中验证邮箱,网址和手机号码已经是很常见了,下面是PHP粉丝网来整理的三个兼容性比较好的正则验证,用在网站上面是再合适不过了,除了PHP中的验证外,也可以将本代码中的正验拷贝到JS中作为前端验证,下面来看一下吧。

1.判断Email:

  1. <?php
  2. function is_email($email){
  3. return strlen($email) > 6 && preg_match("/^[w-.]+@[w-]+(.w+)+$/", $email);
  4. }
  5. ?>

2.判断Url:

  1. function is_url($str){
  2. return preg_match("/^http://[A-Za-z0-9]+.[A-Za-z0-9]+[/=?%-&_~`@[]':+!]*([^<>"])*$/", $str);
  3. }

3.判断手机号码:

  1. function is_mobile($str){
  2. return preg_match("/^(((d{3}))|(d{3}-))?13d{9}$/", $str);
  3. }