Skip to content

Instantly share code, notes, and snippets.

@shyamsalimkumar
Last active December 18, 2015 08:09
Show Gist options
  • Save shyamsalimkumar/5752412 to your computer and use it in GitHub Desktop.
Save shyamsalimkumar/5752412 to your computer and use it in GitHub Desktop.
PHP - Add (th, st, nd, rd, th) to the end of a number
function ordinal($cdnl){
$test_c = abs($cdnl) % 10;
$ext = ((abs($cdnl) %100 < 21 && abs($cdnl) %100 > 4) ? 'th'
: (($test_c < 4) ? ($test_c < 3) ? ($test_c < 2) ? ($test_c < 1)
? 'th' : 'st' : 'nd' : 'rd' : 'th'));
return $cdnl.$ext;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment