Home  >  Article  >  Backend Development  >  A simple php email verification function_PHP tutorial

A simple php email verification function_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 17:40:41956browse

function checkEmail($inAddress)
{
    return (ereg("^([a-zA-Z0-9_-]) @([a-zA-Z0-9_-]) (.[a-zA-Z0-9_-]) ",$inAddress));
}

?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/486200.htmlTechArticle? function checkEmail($inAddress) { return (ereg("^([a-zA-Z0-9_-]) @([a-zA-Z0-9_-]) (.[a-zA-Z0-9_-]) ",$inAddress)); } ?...
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