Unsupported PHP app for analysing and displaying stats for Team Fortress 2
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910
  1. <?PHP
  2. function getSuffix($number) {
  3. if ($number % 10 == 1 && $number % 100 != 11) { return 'st'; }
  4. if ($number % 10 == 2 && $number % 100 != 12) { return 'nd'; }
  5. if ($number % 10 == 3 && $number % 100 != 13) { return 'rd'; }
  6. return 'th';
  7. }
  8. ?>