第二步:打开帝国cms的e/class/userfun.php,加入以下代码
- $num = 104603;
- if ($num > 10000) {
- $formattedNum = number_format($num/10000, 2);
- echo $formattedNum . "万";
- } else {
- echo $num;
- }
第三步:引用方法。在灵动标签中
- // 时间换成万单位
- function user_timew($num){
- $num = $num;
- if ($num > 10000) {
- $formattedNum = number_format($num/10000, 2);
- echo $formattedNum . "万";
- } else {
- echo $num;
- }
- }
- <?=user_timew($bqr[onclick])?>