- <link href="/stylesheet.css?<?php echo time(); ?>" rel="stylesheet" type="text/css" /&glt;
[代码] 为数字增加 st\nd\rd 等
- 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;
- }
原文:http://www.oschina.net/code/snippet_12_6024