<?PHP
/**
* 简单的PHP正则校验email地址的函数
*
* @param
* @author 网: jb51.cc
**/
/* If you won't use filter_var() you should use this instead */
function isEmail($email)
{
if(preg_match("/^[_\.0-9a-zA-Z-]+@([0-9a-zA-Z][0-9a-zA-Z-]+\.)+[a-zA-Z]{2,6}$/i",$email))
{
return true;
}
else
{
return false;
}
}
/*** 来自编程之家 jb51.cc(jb51.cc) ***/
原文链接:https://www.f2er.com/php/528681.html