Home >php教程 >php手册 >一个简单的php邮箱验证函数

一个简单的php邮箱验证函数

WBOY
WBOYOriginal
2016-06-13 10:39:091354browse


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