Skip to content

Instantly share code, notes, and snippets.

@dodopok
Created July 12, 2013 13:59
Show Gist options
  • Save dodopok/5984675 to your computer and use it in GitHub Desktop.
Save dodopok/5984675 to your computer and use it in GitHub Desktop.
Função CEP
<?php
public function cep($cep) {
$this->autoRender=false;
$resultado = file_get_contents('http://republicavirtual.com.br/web_cep.php?cep='.urlencode($cep).'&formato=javascript');
if(!$resultado){
$resultado = "&resultado=0&resultado_txt=erro+ao+buscar+cep";
}
return $resultado;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment