PHP code example of lucasferro0 / boleto-winner
1. Go to this page and download the library: Download lucasferro0/boleto-winner 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/ */
lucasferro0 / boleto-winner example snippets
php
// Converte linha digitável para código de barras
BoletoWinner::toBarcode($writableLine);
// Converte código de barra para linha digitável
BoletoWinner::toWritableLine($barcode);
// Valida código de barra de boleto bancário
(new BoletoValidator())->verifyBarcode($barcode);
// Valida código de barra de boleto de convênio
(new ConvenioValidator())->verifyBarcode($barcode);