这篇文章主要为大家详细介绍了php 数字后面添加(th, st, nd, rd, th) 符号示例,具有一定的参考价值,可以用来参考一下。
php在数字后面添加(th, st, nd, rd, th) 符号,感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。
/**
* 数字后面添加(th, st, nd, rd, th) 符号
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
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;$i++){
echo ordinal($i).'<br>';
}
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/319-0.html
注:关于php 数字后面添加(th, st, nd, rd, th) 符号示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:数字
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。