这篇文章主要为大家详细介绍了php 为数字增加 st\nd\rd 等的实现方法,具有一定的参考价值,可以用来参考一下。
php为数字增加 st\nd\rd 等,感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。
/**
* 为数字增加 st\nd\rd
*
* @param
* @author 四海网 www.q1010.com
**/
function make_ranked($rank) {
$last = substr( $rank, -1 );
$seclast = substr( $rank, -2, -1 );
if( $last > 3 || $last == 0 ) $ext = 'th';
else if( $last == 3 ) $ext = 'rd';
else if( $last == 2 ) $ext = 'nd';
else $ext = 'st';
if( $last == 1 && $seclast == 1) $ext = 'th';
if( $last == 2 && $seclast == 1) $ext = 'th';
if( $last == 3 && $seclast == 1) $ext = 'th';
return $rank.$ext;
}
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/209-0.html
注:关于php 为数字增加 st\nd\rd 等的实现方法的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:数字
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。