Skip to content

Instantly share code, notes, and snippets.

@mnazim
Created July 28, 2011 19:26
Show Gist options
  • Save mnazim/1112330 to your computer and use it in GitHub Desktop.
Save mnazim/1112330 to your computer and use it in GitHub Desktop.
Generate ordinal, easy way in PHP (see: http://blog.ikraftsoft.com/post/174637756/)
function get_ordinal($num) {
$temp_num = ($num > 31) ? ($num % 31) + 1 : $num;
return $num . date('S', mktime(0, 0, 0, $temp_num, 0, 0));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment