Skip to content

Instantly share code, notes, and snippets.

@adinan-cenci
Last active March 18, 2018 14:08
Show Gist options
  • Save adinan-cenci/6cedc0449b36d42a1c99386cff1a81d0 to your computer and use it in GitHub Desktop.
Save adinan-cenci/6cedc0449b36d42a1c99386cff1a81d0 to your computer and use it in GitHub Desktop.
Dois serviços para a busca de endereço via CEP.
<?php
function republicaVirtualGetAddressByCep($cep, $format = 'json')
{
$ch = curl_init("http://cep.republicavirtual.com.br/web_cep.php?cep=$cep&formato=$format");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($ch);
curl_close ($ch);
return $data;
}
<?php
function widenetGetAddressByCep($cep, $format = 'json')
{
$ch = curl_init("http://apps.widenet.com.br/busca-cep/api/cep.$format?code=$cep");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($ch);
curl_close ($ch);
return $data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment