名站网址导航为大驾家提供DedeCMS站点程序站点教程相关的知识,比如织梦程序安装教程,织梦程序系统故障等教程。在 includeextend.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万。
关于DedeCMS站点程序站点教程相关的知识,就说到这里了希望能帮助朋友们。dedecms网站程序织梦程序图集在首页或站点列表页具体调用并自定义显示几张图