Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. function busca_cepCurl($cep){
  5.  
  6.     $ch = curl_init();
  7.     curl_setopt($ch, CURLOPT_URL, "http://republicavirtual.com.br/web_cep.php?cep=".$cep."&formato=json");
  8.     curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  9.     curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);
  10.     $c = curl_exec($ch);
  11.     return  json_decode($c,true);
  12.  
  13.  
  14. }
  15.  
  16.  
  17. var_dump(busca_cepCurl('75600-000'));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement