advanced code snippet search
theworldofdan on 07/21/11
07/21/11 08:47pm
URL: http://phpsnips.com/snippet.php?id=37
<?phpfunction 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;$i++){ echo ordinal($i).'<br>';}
Report this snippet Tweet
Comment:
You need to login to post a comment.