PHP code example of wgenial / numeroporextenso
1. Go to this page and download the library: Download wgenial/numeroporextenso 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/ */
wgenial / numeroporextenso example snippets
use WGenial\NumeroPorExtenso\NumeroPorExtenso;
$extenso = new NumeroPorExtenso;
$extenso = $extenso->converter(123.45);
echo $extenso;
// cento e vinte três reais e quarenta cinco centavos
use WGenial\NumeroPorExtenso\NumeroPorExtenso;
$vazio = new NumeroPorExtenso;
$vazio = $extenso->converter();
echo $vazio;
// Informe um numeral.
use WGenial\NumeroPorExtenso\NumeroPorExtenso;
$negativo = new NumeroPorExtenso;
$negativo = $extenso->converter(-1);
echo $negativo;
// O numeral deve ser maior que zero.