Created
July 9, 2014 06:21
-
-
Save trq/85a4fcd131cfed3b4275 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$formatter = new NumberFormatter('en_AU', NumberFormatter::SPELLOUT); | |
$formatter->setTextAttribute(NumberFormatter::DEFAULT_RULESET, "%spellout-ordinal"); | |
for ($i = 1; $i <= 5; $i++) { | |
echo $formatter->format($i) . "\n"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment