Is there a way in yii2 to convert a number into words?
For example 101 into "one hundred one".
I didn't find an extension for yii2.
Is there any function?
You can use asSpellout()
Yii::$app->formatter->asSpellout(101);
Make sure you have PHP intl extension installed.