关于PHP中验证邮箱,网址和手机号码已经是很常见了,下面是PHP粉丝网来整理的三个兼容性比较好的正则验证,用在网站上面是再合适不过了,除了PHP中的验证外,也可以将本代码中的正验拷贝到JS中作为前端验证,下面来看一下吧。
1.判断Email:
- <?php
- function is_email($email){
- return strlen($email) > 6 && preg_match("/^[w-.]+@[w-]+(.w+)+$/", $email);
- }
- ?>
2.判断Url:
- function is_url($str){
- return preg_match("/^http://[A-Za-z0-9]+.[A-Za-z0-9]+[/=?%-&_~`@[]':+!]*([^<>"])*$/", $str);
- }
3.判断手机号码:
- function is_mobile($str){
- return preg_match("/^(((d{3}))|(d{3}-))?13d{9}$/", $str);
- }
|