Convert number to letter with php [duplicate]

Can use

With Numbers_Words class you can convert numbers
written in arabic digits to words in several languages.
You can convert an integer between -infinity and infinity.
If your system does not support such long numbers you can
call Numbers_Words::toWords() with just a string.

With the Numbers_Words::toCurrency($num, $locale, ‘USD’) method
you can convert a number (decimal and fraction part) to words with currency name.

Leave a Comment