Skip to content

Instantly share code, notes, and snippets.

@jperras
Created September 24, 2009 02:51
Show Gist options
  • Save jperras/192488 to your computer and use it in GitHub Desktop.
Save jperras/192488 to your computer and use it in GitHub Desktop.
<?php
function ordinal($number) {
$default = 'th';
$suffixes = array('th', 'st', 'nd', 'rd');
if ( ($number % 100 > 10 && $number % 100 < 14) || ($number % 10 > 3 ) ) {
$result = sprintf('%d%s', $number, $default);
}
else {
$index = $number % 10;
$result = sprintf('%d%s', $number, $suffixes[$index]);
}
return $result;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment