php 去重累加的例子

作者:袖梨 2022-06-24

   
    /**
     * 数据去重累加
     *
     * @param $array
     * @param string $reference_str  参照str
     * @param string $accumulation_str  累加str
     * @return mixed
     */
    public function arrayHeavyAccumulation($array , $reference_str, $accumulation_str)
    {
        $unset = array();

        for ($i = 0; $i < count($array); $i++){
            for ($j = $i+1; $j  $value){
            unset($array[$value]);
        }

        return array_merge($array);
    }

相关文章

精彩推荐