VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • 一个简单PHP验证邮箱合法性的函数

一个简单PHP验证邮箱合法性的函数,功能很全,记下备用,函数代码如下:

  1. $mail = 'wan.ch_un0222@126.qq.com'
  2. function vaildEmail($mail){ 
  3.  //验证邮箱 
  4.  if (emptyempty($mail) || !preg_match("/^[-a-zA-Z0-9_.]+@([0-9A-Za-z][0-9A-Za-z-]+.)+[A-Za-z]{2,5}$/",$mail)){ 
  5.      return false; 
  6.  }else
  7.      return true; 
  8.  } 
  9.  

出处:http://www.phpfensi.com/php/20140730/4071.html


相关教程