在 include\extend.func.php 加個函數(shù)
內(nèi)容模板中調(diào)用標簽
{dede:field.click function=click_round_number(@me)/}
這樣就能實現(xiàn)dedecms織夢點擊數(shù)過千過萬過億寫法
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; } }
內(nèi)容模板中調(diào)用標簽
{dede:field.click function=click_round_number(@me)/}
這樣就能實現(xiàn)dedecms織夢點擊數(shù)過千過萬過億寫法

















