Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
Validate email Address
Useful PHP Code Snippets for Developers - Validate email Address
✍: Guest
function is_valid_email($email, $test_mx = false)
{
if(eregi("^([_a-z0-9-]+)(\.[_a-z0-9-]+)*@([a-z0-9-]+)(\.[a-z0-9-]+)*(\.[a-z]{2,4})$", $email))
if($test_mx)
{
list($username, $domain) = split("@", $email);
return getmxrr($domain, $mxrecords);
}
else
return true;
else
return false;
}
2015-06-19, 1968🔥, 0💬
Popular Posts:
What is Microsoft Office 365? Office 365 is a cloud service offered by Microsoft that provide produc...
How to login to outlook.office365.com with a Browser? I have a company email account on Office365. I...
How to install IPython in a Conda environment? If you want to install IPython in a specific Conda en...
Where to find answers to frequently asked questions about Microsoft Office 365? Here is a collection...
What is "OneNote Notes about Word Documents" add-in in Microsoft Word? Should I disable it? "OneNote...