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