Home  >  Article  >  php教程  >  判断邮件地址是否合法

判断邮件地址是否合法

PHP中文网
PHP中文网Original
2016-05-25 17:06:281054browse

function is_email( $email ) {

//后缀可自己添加。主要是用到正则式。
				  
if(!preg_match( '/^[a-z0-9_]+(\.[_a-z0-9\-]+)*@([a-z0-9\-]+\.)+([a-z]|aero|arpa|biz|com|cm|	cc|coop|cn|tv|me|edu|gov|info|int|jobs|mil|museum|name|nato|net|org|pro|travel)$/', $email)){
				  return false;
				  }				 
    return true;
}

                   


                   

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:php操作XML增删查改Next article:peizhi