欢迎来到奥多码

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

日期: 2020-06-30 11:41:12

这个需求是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
 

上一篇:织梦DedeCMS提示系统禁止删除目录解决办法

下一篇:织梦DedeCMS自定义表单添加验证码功能教程

  • 在线客服

    官方微信

    仅处理投诉、举报及平台使用问题;
    商品问题请咨询商家客服!

浏览记录