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

教程

在 /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)/}

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsfgsj.html