i want to display numbers as follows
1 as 1st, 2 as 2nd and so on to 150 as 150th. the problem is how to find 'st' , 'nd' ,'rd' and 'th' for numbers through code
|
Where |
|||||||||||||||
|
|
PHP has built-in functionality for this. It even handles internationalization!
Note that this functionality is only available in PHP 5.3.0 and later. |
|||||
|
|
from http://www.phpro.org/examples/Ordinal-Suffix.html
|
|||
|
|
|
Here is a one-liner:
Probably the shortest solution. Can of course be wrapped by a function:
Regards, Paul EDIT1: Correction of code for 11 through 13. EDIT2: Correction of code for 111, 211, ... EDIT3: Now it works correctly also for multiples of 10. |
|||||||||
|
|
I wrote this for PHP4. It's been working ok & it's pretty economical.
|
||||
|
|
|
This can be accomplished in a single line by leveraging similar functionality in PHP's built-in date/time functions. I humbly submit: Solution:
Detailed Explanation: The built-in
Since
This actually fails gracefully on values out of range for a day of the month (i.e.
The only positive value this fails on is
Just wrap it in a function for convenience and off you go! |
|||
|
|
|
Generically, you can use that and call echo get_placing_string(100);
|
|||
|
|
|
you just need to apply given function.
|
|||
|
|