Skip to content

Instantly share code, notes, and snippets.

@makingthingswork
Last active November 19, 2020 14:33
Show Gist options
  • Save makingthingswork/a3333df365f3dcca4f30460ae7a5ef7c to your computer and use it in GitHub Desktop.
Save makingthingswork/a3333df365f3dcca4f30460ae7a5ef7c to your computer and use it in GitHub Desktop.
Get number as ordinal
<?php
//Returns the number as an ordinal eg. 1st, 2nd, 3rd, 4th etc.
function nth(num) {
nf = new NumberFormatter('en_GB', NumberFormatter::ORDINAL);
return nf->format(num);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment