Skip to content

Instantly share code, notes, and snippets.

@jardelsantana
Created July 29, 2017 15:42
Show Gist options
  • Save jardelsantana/e4438e32fe497ade3eac697555e9f7ea to your computer and use it in GitHub Desktop.
Save jardelsantana/e4438e32fe497ade3eac697555e9f7ea to your computer and use it in GitHub Desktop.
function valida($cep) {
$cep = trim($cep);
$avaliaCep = ereg("^[0-9]{5}-[0-9]{3}$", $cep);
if(!$avaliaCep) {
echo "CEP inválido";
}
else
{
echo "CEP Válido";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment