php 为数字增加 st\nd\rd 等的实现方法
内容摘要
这篇文章主要为大家详细介绍了php 为数字增加 st\nd\rd 等的实现方法,具有一定的参考价值,可以用来参考一下。
php为数字增加 st\nd\rd 等,对此感兴趣的朋友,看看idc笔记做的技
php为数字增加 st\nd\rd 等,对此感兴趣的朋友,看看idc笔记做的技
文章正文
这篇文章主要为大家详细介绍了php 为数字增加 st\nd\rd 等的实现方法,具有一定的参考价值,可以用来参考一下。
php为数字增加 st\nd\rd 等,对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:
/**
* 为数字增加 st\nd\rd
*
* @param
* @author php教程 www.idcnote.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;
}
/*** 来自php教程(www.idcnote.com) ***/
注:关于php 为数字增加 st\nd\rd 等的实现方法的内容就先介绍到这里,更多相关文章的可以留意
代码注释