PHP 将(th,st,nd,rd,th)添加到数字的末尾
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 将(th,st,nd,rd,th)添加到数字的末尾相关的知识,希望对你有一定的参考价值。
<?php
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 将(th,st,nd,rd,th)添加到数字的末尾的主要内容,如果未能解决你的问题,请参考以下文章
PHP st,nd,rd,th to Number
通过python将带有'th''st''rd''nd'的日期字符串转换为日期格式
提取以“st”、“nd”、“rd”、“th”结尾的日期,同时使用 RegEx 将日期与月份交换
Flutter:移动到上一个屏幕(2nd)并仅删除上一个屏幕(2nd 3rd 4th),而不是所有屏幕(1st 2nd 3rd 4th)
csharp 获取当前日期的后缀(st,nd,rd或th)
python--以1-31的数字作为结尾的列表?论英文好的重要性!