🇵🇱 Ta biblioteka pomaga zapisać liczby w postaci słownej.
This library helps you to write numbers into words in Polish.
Use composer to install this package.
{
"require": {
"vlaim/slownie": "1.0.*"
}
}
Slownie::convert($number, bool $hideGrosze = false, bool $hideZlote = false)
$number – number to convert, integer, float or string (not recommended) can be passed here
$hideGrosze - hides grosze (00/100)
$hideZłote - hides złoty form
Slownie::convert(10348) // dziesięć tysięcy trzysta czterdzieści osiem złotych 00/100
To hide grosze pass true
as the second param
Slownie::convert(10348, true) // dziesięć tysięcy trzysta czterdzieści osiem złotych
To hide złoty / złotych / złote pass true
as the third param
Slownie::convert(10348, true, true) // dziesięć tysięcy trzysta czterdzieści osiem
To run tests
composer test
Bug reports and feature requests can be submitted on the Github Issue Tracker.
Feel free to open an issue on every question you have.
vlaim/slownie is released under the MIT License. See the bundled LICENSE.md for details.