Skip to content

Instantly share code, notes, and snippets.

@BigManatee
Forked from mnpenner/ordinal.php
Last active August 29, 2015 14:06
Show Gist options
  • Save BigManatee/ca41b9a3d49130a4647a to your computer and use it in GitHub Desktop.
Save BigManatee/ca41b9a3d49130a4647a to your computer and use it in GitHub Desktop.
Add st, nd, rd, th to a Number
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