Skip to main content
 Web开发网 » 站长学院 » 织梦教程

织梦DedeCMS自动转换数字的函数代码

2020年09月12日8260百度已收录

这个需求是AB织梦模板网在织梦官方群里看到一个群友提出的,要实现网站中的数字自动转换为X千、X万X千这样的表现形式。

 

这个想法很独特,不过也很实用,特别对于那些频繁展现数字的网站来说。其实实现起来很简单,只需要在 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)/} //以调用点击数字为例

 

实现效果为:1万3千4百2十5


 

评论列表暂无评论
发表评论
微信