PHP code example of alexandremrrocha / digital-cep

1. Go to this page and download the library: Download alexandremrrocha/digital-cep 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/ */

    

alexandremrrocha / digital-cep example snippets



Alexandre\DigitalCep\Search;

$busca = new Search();

// Aceita CEP com ou sem hífen; prefira 8 dígitos
$resultado = $busca->getAddressFromZipcode('01001000');

if (isset($resultado->erro) && $resultado->erro === true) {
    echo 'CEP não encontrado.';
} else {
    echo $resultado->logradouro . ', ' . $resultado->bairro . ' - '
        . $resultado->localidade . '/' . $resultado->uf;
}