Skip to content

Instantly share code, notes, and snippets.

@trq
Created July 9, 2014 06:21
Show Gist options
  • Save trq/85a4fcd131cfed3b4275 to your computer and use it in GitHub Desktop.
Save trq/85a4fcd131cfed3b4275 to your computer and use it in GitHub Desktop.
<?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