PHP code example of engfabiodesalvi / busca-cep-php
1. Go to this page and download the library: Download engfabiodesalvi/busca-cep-php library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
engfabiodesalvi / busca-cep-php example snippets
gfabiodesalvi\BuscaCepPhp\Search;
$busca = new Search;
// Busca o CEP
$resultado = $busca->getAdressFromZipcode('01001000');
print_r($resultado);
use Engfabiodesalvi\BuscaCepPhp\CepSearch;
$cep = new CepSearch();
$address = $cep->search('01001000');
echo $address->street();