fork download
  1. <?php
  2.  
  3. $formatter = new NumberFormatter('en_US', NumberFormatter::SPELLOUT);
  4. $formatter->setTextAttribute(NumberFormatter::DEFAULT_RULESET,
  5. "%spellout-ordinal");
  6.  
  7. foreach ([1, 52, 123, 4768] as $i) {
  8. echo $formatter->format($i) . PHP_EOL;
  9. }
  10.  
  11. // first
  12. // fifty-second
  13. // one hundred twenty-third
  14. // four thousand seven hundred sixty-eighth
Runtime error #stdin #stdout #stderr 0s 82880KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Fatal error:  Uncaught Error: Class 'NumberFormatter' not found in /home/WwxO0t/prog.php:3
Stack trace:
#0 {main}
  thrown in /home/WwxO0t/prog.php on line 3