Skip to content

Instantly share code, notes, and snippets.

@mnpenner
Created August 9, 2013 18:28
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save mnpenner/6195925 to your computer and use it in GitHub Desktop.
Save mnpenner/6195925 to your computer and use it in GitHub Desktop.
function ordinal($number) {
$ends = array('th','st','nd','rd','th','th','th','th','th','th');
$mod100 = $number % 100;
return $number . ($mod100 >= 11 && $mod100 <= 13 ? 'th' : $ends[$number % 10]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment