PHP code example of biller / bcu

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

    

biller / bcu example snippets


// Dólar interbancario para el último día de cierre
biller\bcu\Cotizaciones::obtenerCotizacion();

// Dólar interbancario para el 01-ene-2018
biller\bcu\Cotizaciones::obtenerCotizacion('2018-01-01');

// Dólar interbancario para el 01-ene-2018
biller\bcu\Cotizaciones::obtenerCotizacion('2018-01-01', 2225);

// Euro para ambos Grupos de Monedas para el 01-ene-2018
biller\bcu\Cotizaciones::obtenerCotizacion('2018-01-01', 1111, 0);

biller\bcu\Cotizaciones::obtenerUltimoCierre();