PHP code example of fernandovaller / indices-economicos
1. Go to this page and download the library: Download fernandovaller/indices-economicos 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/ */
fernandovaller / indices-economicos example snippets
use App\Sinduscon\Indice;
// Criar uma nova instância para buscar os índices
$indice = new Indice();
// Obter todos os índices mais recentes como array
$dados = $indice->build()->all();
// Obter todos os índices mais recentes como JSON
$dados = $indice->build()->json();
// Obter um índice específico (ex: IGP-M)
$dados = $indice->build()->get('IGP-M(FGV)');
// Listar todos os índices disponíveis
$listaIndices = $indice->listIndiceAllowed();
// Limpar cache e obter os índices novamente
$dados = $indice->clearCache()->build()->json();