php 数字后面添加(th, st, nd, rd, th) 符号示例

内容摘要
这篇文章主要为大家详细介绍了php 数字后面添加(th, st, nd, rd, th) 符号示例,具有一定的参考价值,可以用来参考一下。

php在数字后面添加(th, st, nd, rd, th) 符号,对此感
文章正文

这篇文章主要为大家详细介绍了php 数字后面添加(th, st, nd, rd, th) 符号示例,具有一定的参考价值,可以用来参考一下。

php在数字后面添加(th, st, nd, rd, th) 符号,对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:

/**
 * 数字后面添加(th, st, nd, rd, th) 符号
 *
 * @param 
 * @arrange (www.idcnote.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>'; 
} 



/***   来自php教程(www.idcnote.com)   ***/

注:关于php 数字后面添加(th, st, nd, rd, th) 符号示例的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!