Syntax
1
2
3
4
|
<?php
$number = 10;
echo ordinal($number); //output is 10th
?>
|
1
2
3
4
5
6
7
|
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;
}
|
1
2
3
4
|
<?php
$number = 10;
echo ordinal($number); //output is 10th
?>
|
1
2
3
4
5
| <?php$amount = '100000';setlocale(LC_MONETARY, 'en_IN');$amount = money_format('%!i', $amount);echo $amount; |
1
| 1,00,000.00 |
Hello Friends! I am Ramana a part time blogger from Hyderabad.