PHP验证邮箱代码:
function isEmail($email) { return strlen($email) > 6 && preg_match("/^[w-.]+@[w-.]+(.w+)+$/", $email); }
PHP验证邮箱地址代码