This component provides a means to convert numeric number (e.g. 1023
) to a string of works (e.g. one thousand and twenty three
). It also provides a laminas-view helper called numberToWord.
$ composer require "nineteenfeet/nf-number-to-word"
use NFNumberToWord\NumberToWords;
$number = 1999;
$numberToWords = new NumberToWords();
$string = $numberToWords->toWords($number);