Search code examples
yii2numberswords

Yii2 Convert Number to words


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?


Solution

  • You can use asSpellout()

    Yii::$app->formatter->asSpellout(101);
    

    Make sure you have PHP intl extension installed.