PHP code example of ozoriotsn / viacep

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

    

ozoriotsn / viacep example snippets

 php


    zoriotsn\ViaCep\ViaCep;

    $viacep = ViaCep::class;
    $zipCodeAddress = $viacep::findByCep('01001-000')->toJson();
    echo ($zipCodeAddress);

    /********************
     * Return address
     ********************
    {
    "cep": "01001-000",
    "logradouro": "Praça da Sé",
    "complemento": "lado Impar",
    "bairro": "Sé",
    "localidade": "São Paulo",
    "uf": "SP",
    "ibge": "3550308",
    "gia": "1004",
    "ddd": "11",
    "siafi": "7107",
    "fill": null
    }
    */