Pages

Add (th, st, nd, rd, th) to the end of a number

This straightforward and simple function will take a number and include "th, st, nd, rd, th" after it. Extremely valuable!
function ordinal($cdnl){
    $test_c = abs($cdnl) % 10;
    $ext = ((abs($cdnl) %100 < 21 && abs($cdnl) %100 > 4) ? 'th'
            : (($test_c < 4) ? ($test_c < 3) ? ($test_c < 2) ? ($test_c < 1)
            ? 'th' : 'st' : 'nd' : 'rd' : 'th'));
    return $cdnl.$ext;
} 
for($i=1;$i<100 data-blogger-escaped-br="" data-blogger-escaped-echo="" data-blogger-escaped-i="" data-blogger-escaped-ordinal="">';
} 
Source : http://phpsnips.com/snip-37