PHP code example of ozoriotsn / opencep
1. Go to this page and download the library: Download ozoriotsn/opencep 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 / opencep example snippets
php
zoriotsn\OpenCep\OpenCep;
$opencep = OpenCep::class;
$zipCodeAddress = $opencep::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"
}
*/