1

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?

yii2__
  • 167
  • 2
  • 13
  • 4
    Possible duplicate of [Is there an easy way to convert a number to a word in PHP?](https://stackoverflow.com/questions/277569/is-there-an-easy-way-to-convert-a-number-to-a-word-in-php) – Pedro del Sol Dec 07 '17 at 11:26

1 Answers1

5

You can use asSpellout()

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

Make sure you have PHP intl extension installed.

Insane Skull
  • 9,220
  • 9
  • 44
  • 63