3v4l.org

run code in 300+ PHP versions simultaneously
<?php // $a = array("1"=>2,"2"=>8,"3"=>9,"4"=>8,"5"=>6,"6"=>7,"7"=>9,"8"=>2); // used short array notation (see references) and removed keys (since not used) $numbers = [2,8,9,8,6,7,9,2,95890814984141]; // the last number is for my pleasure :P $numberFormatter = new NumberFormatter('en', NumberFormatter::SPELLOUT); foreach ($numbers as $number) { $numberSpelled = $numberFormatter->format($number); $numberSpelledWithFirstCharUpper = ucfirst($numberSpelled); echo $numberSpelledWithFirstCharUpper . ' - ' . $number . PHP_EOL; }
Output for git.master, git.master_jit, rfc.property-hooks
Two - 2 Eight - 8 Nine - 9 Eight - 8 Six - 6 Seven - 7 Nine - 9 Two - 2 Ninety-five trillion eight hundred ninety billion eight hundred fourteen million nine hundred eighty-four thousand one hundred forty-one - 95890814984141

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
27.64 ms | 405 KiB | 5 Q