Skip to content

Instantly share code, notes, and snippets.

@marceloxp
Created July 2, 2014 15:24
Show Gist options
  • Save marceloxp/fecade7dba56081329c6 to your computer and use it in GitHub Desktop.
Save marceloxp/fecade7dba56081329c6 to your computer and use it in GitHub Desktop.
Formatação de dados - Brasil
function formataCEP($cep)
{
$valor = str_replace(array('.','-',','),'',trim($cep));
$tam = strlen($valor);
if($tam == 8)
{
$p1 = substr($valor,0,5);
$p2 = substr($valor,5,3);
$resultado = $p1."-".$p2;
}
else
{
$resultado = "";
}
return $resultado;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment