欢迎来到元素模板ys720.com,本站提供专业的织梦模板PBOOTCMS模板网站模板网站修改/网站仿站
当前位置:主页 > 程序教程 > DEDECMS教程 >
DEDECMS教程

织梦点击数或者其他数值过【千】过【万】过【亿】的写法

(元素模板) / 2020-03-05 21:15
前台效果

实现教程

在 /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.数字字段名 function=click_round_number(@me)/}
Copyright @ 2013-2021 元素模板 www.ys720.com All Rights Reserved. 版权所有 元素模板 www.ys720.com