Skip to content

Instantly share code, notes, and snippets.

@jveldboom
Created March 2, 2013 01:49
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jveldboom/5069263 to your computer and use it in GitHub Desktop.
Save jveldboom/5069263 to your computer and use it in GitHub Desktop.
<?php
function addOrdinalNumberSuffix($num) {
if (!in_array(($num % 100),array(11,12,13))){
switch ($num % 10) {
// Handle 1st, 2nd, 3rd
case 1: return $num.'st';
case 2: return $num.'nd';
case 3: return $num.'rd';
}
}
return $num.'th';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment