PHP code example of tigo / documentbr

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

    

tigo / documentbr example snippets


  

use Tigo\DocumentBr\Cpf; //import class 
use Tigo\DocumentBr\Cnpj; //import class 

$cpf = new Cpf(); 
var_dump($cpf->check('00000000000')); // verifica se o cpf é válido, caso seja válido retorne true
var_dump($cpf->generate());// gerar cpf válido

$cnpj = new Cnpj();
var_dump($cnpj->check('00000000000000')); // verifica se o cnpj é válido, caso seja válido retorne true
var_dump($cnpj->generate());// gerar cnpj válido