Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <?php
  2.  
  3. function buscaCep($cep){
  4.     $date       = file_get_contents("http://apps.widenet.com.br/busca-cep/api/cep/$cep.json");
  5.     $result     = json_decode($date, true);
  6.  
  7.     return $result;
  8. }
  9.  
  10. $cep = buscaCep('17512-560');
  11.  
  12. ?>
  13.  
  14. <p><b>Estado: </b> <?=$cep['state']?> </p>
  15. <p><b>Cidade: </b><?=$cep['city']?> </p>
  16. <p><b>Bairro: </b><?=$cep['district']?></p>
  17. <p><b>Rua: </b><?=$cep['address']?></p>
  18. <p><b>Cep: </b><?=$cep['code']?></p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement