egosun / numbers2words
It spells numbers (and currencies)!
This package's canonical repository appears to be gone and the package has been frozen as a result.
0.0.1
2020-10-21 11:16 UTC
Requires (Dev)
- phpunit/phpunit: ~9.0
This package is not auto-updated.
Last update: 2023-06-29 23:34:27 UTC
README
Modified version of jurchiks/numbers2words.
NumbersToWords
This library is meant for general-purpose number spelling for use in, e.g. legal documents and bills.
Supported languages (ISO 639-1 language codes):
- English ('en')
- Estonian ('et')
- Latvian ('lv')
- Lithuanian ('lt')
- Russian ('ru')
- Spanish ('es')
Supported currencies (ISO 4217 currency codes):
- British Pounds ('GBP')
- Euro ('EUR')
- Latvian Lats ('LVL')
- Lithuanian Lits ('LTL')
- Russian Roubles ('RUR')
- U.S. Dollars ('USD')
Report issues if you find any!
USAGE
use Egosun\NumbersToWords\Speller;
Speller::spellNumber(123, Speller::LANGUAGE_RUSSIAN);
// output: сто двадцать три
Speller::spellCurrency(123.45, Speller::LANGUAGE_ENGLISH, Speller::CURRENCY_EURO, true, true);
// output: one hundred and twenty three euro and forty five cents
TESTS
$ vendor/bin/phpunit