首页 > CMS > 织梦DEDE > 正文

dedecms织梦点击数过千、万、亿的写法

2024-07-12 09:02:42
字体:
来源:转载
供稿:网友

在 include/extend.func.php 最下面加个函数

function click_round_number( $number, $min_value = 1000, $decimal = 1 ) {    if( $number < $min_value ) {        return $number;    }    $alphabets = array( 100000000 => '亿', 10000 => '万', 1000 => '千' );    foreach( $alphabets as $key => $value )    if( $number >= $key ) {        return round( $number / $key, $decimal ) . '' . $value;    }}

调用标签如下:

{dede:field.click function="click_round_number(@me)"/}

效果:

1000=1千;

15000=1.5万;

210000=21万。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表