logo SnippetVamp

php 112astuce 108fonctions 91css 75javascript 71html 54fichiers 32jquery 27texte 20securite 18bootstrap 14graphisme 14parser 13debug 11python 11responsive 9pluXML 7crossbrowser 5evenements 5vanilla 5ajax 4conversion 3form 3auto_ 2bash 2dothtaccess 2lib 2markdown 2mobile 2promise 2effets 1erreurs 1fallback 1filter 1mail 1social 1
SnippetVamp 3.1d - 2026 - GNU GPL - FAQ
1 - Valider un email
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;  
}
			
php fonctions
http://webdeveloperplus.com/php/21-really-useful-handy-php-code-snippets/
public - 25/08/2013 - Add to pack - texte seul - permalink