Cara Mengurangi Array PHP dengan Contoh

Kami memberi Anda beberapa jawaban atas pertanyaan Cara Pengurangan Array PHP dengan Contoh dalam artikel berikut. Saya harap ini akan menjadi jawaban yang Anda butuhkan, menghemat waktu Anda. penegakan

Cara Mengurangi Array PHP dengan Contoh
<?php

$array = [
    [
        'tag_id' => "6291",
        'az' => 5,
    ],
    [
        'tag_id' => "6291",
        'az' => 4,
    ],
    [
        'tag_id' => "6311",
        'az' => 4,
    ],
    [
        'tag_id' => "6427",
        'az' => 4,
    ]
];

$tag_id_indexes = []; // To store the index of the first tag_id found.

array_walk(
    $array,
    function ($sub_array, $index) use (&$array, &$tag_id_indexes) {
        // Store the index of the first tag_id found.
        if (!isset($tag_id_indexes[$sub_array['tag_id']])) {
            $tag_id_indexes[$sub_array['tag_id']] = $index;
        }
        else { // This tag_id already exists so we'll combine it.
            // Get the index of the previous tag_id.
            $first_tag_id_index = $tag_id_indexes[$sub_array['tag_id']];
            // Sum the az value.
            $array[$first_tag_id_index]['az'] += $sub_array['az'];
            // Remove this entry.
            unset($array[$index]);
        }
    }
);

print "The reduced array but with the original indexes:\n" . var_export($array, true) . "\n";

// If you want new indexes.
$array = array_values($array);

print "The reduced array with new indexes:\n" . var_export($array, true) . "\n";

Jika Anda belum menemukan jawaban atas pertanyaan Anda. Silakan lihat lebih banyak item di bawah ini tentang Cara Mengurangi Array PHP dengan Contoh. Atau tinggalkan kami pertanyaan

tidak terdefinisi