Skip to content

Instantly share code, notes, and snippets.

@nawawi
Created July 6, 2015 17:59
Show Gist options
  • Save nawawi/2a8be1187150d7d5a3d4 to your computer and use it in GitHub Desktop.
Save nawawi/2a8be1187150d7d5a3d4 to your computer and use it in GitHub Desktop.
check email
<?php
function _check_email($email, $strict = false) {
if ( filter_var($email, FILTER_VALIDATE_EMAIL) ) {
if ( $strict && function_exists("getmxrr") ) {
list($prefix, $domain) = split("@",$email);
return @getmxrr($domain, $maxhost);
}
return true;
}
return false;
}
// test
echo ( _check_email('mohd.nawawi@gmail.com', false) ? "OK" : "KO" );
echo ( _check_email('mohd.nawawi@gmailaaa.com', true) ? "OK" : "KO" );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment