Skip to content

Instantly share code, notes, and snippets.

@kroatoanweb
Created July 20, 2016 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kroatoanweb/be603e55578d708ab24f6842d7773a70 to your computer and use it in GitHub Desktop.
Save kroatoanweb/be603e55578d708ab24f6842d7773a70 to your computer and use it in GitHub Desktop.
<?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