PHP code example of jefersondaniel / novoboletophp
1. Go to this page and download the library: Download jefersondaniel/novoboletophp 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/ */
jefersondaniel / novoboletophp example snippets
use \NovoBoletoPHP\BoletoFactory;
$factory = new BoletoFactory;
$data = array(
'nosso_numero' => '7002',
'inicio_nosso_numero' => '7000',
'numero_documento' => '7002',
'data_vencimento' => '02/03/2015',
'data_documento' => '22/02/2015',
'data_processamento' => '22/02/2015',
'valor_boleto' => '10,00',
'convenio' => '1234567',
'contrato' => '',
'carteira' => '18',
'variacao_carteira' => '27',
'especie_doc' => 'DS',
'sacado' => 'Jeferson Daniel',
'sacado_documento' => '643.149.352-43',
'endereco1' => 'Rua de Teste, 472 - Vila Teste',
'endereco2' => 'Cidade de Teste, São Paulo - BR',
'demonstrativo1' => 'Pagamento 1 de 5 da mensalidade',
'instrucoes1' => 'Não receber após vencimento',
'aceite' => 'N',
'especie' => 'R$',
'agencia' => '4321', // Num da agencia, sem digito
'conta' => '12345', // Num da conta, sem digito
'conta_dv' => '9',
'identificacao' => 'Empresa de Teste',
'cpf_cnpj' => '15.262.543/0001-54',
'endereco' => 'Rua da Empresa, 18, Vila Teste',
'cidade_uf' => 'São Paulo - SP',
'cedente' => 'Empresa de Teste LTDA',
'logo_empresa' => 'http://placehold.it/200&text=logo',
);
echo $factory->makeBoletoAsHTML(BoletoFactory::BANCO_DO_BRASIL, $data);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.