PHP code example of saaiful / number-to-word

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

    

saaiful / number-to-word example snippets


...
 Saaiful\NumberToWord\Word;

$bangla = new Word(324650);

echo $bangla->word();

...
 Saaiful\NumberToWord\Word;

$bangla = new Word('-১২৩');

echo $bangla->word();

...
o n2w($number);


re 'path/to/helper.php';

use Saaiful\NumberToWord\Word;

$bangla = new Word('-১২৩');

echo $bangla->word();