Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
<?php
/**
*
* Valida un email usando filter_var.
* Devuelve true si es correcto o false en caso contrario
*
* @param string $str la dirección a validar
* @return boolean
*
*/
function is_valid_email($str)
{
return (false !== filter_var($str, FILTER_VALIDATE_EMAIL));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment