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

前端之家收集整理的这篇文章主要介绍了php 数字后面添加(th, st, nd, rd, th) 符号示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
PHP在数字后面添加(th,st,nd,rd,th) 符号,感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编来看看吧。
经测试代码如下:

/**
 * 数字后面添加(th,th) 符号
 *
 * @param 
 * @arrange (512.笔记) jb51.cc
 **/
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>'; 
} 



/***   来自编程之家 jb51.cc(jb51.cc)   ***/
原文链接:https://www.f2er.com/php/528980.html

猜你在找的PHP相关文章