“php json_encode menghapus indeks array” Kode Jawaban

cara menghapus indeks array dari json dalam php

<?php

// numeric array keys with no gaps
$a = ['a', 'b', 'c'];
echo json_encode($a);
// ["a","b","c"]

// filter out the 'b' element to introduce a gap in the keys
$a = array_filter($a, function ($v) {
    return $v !== 'b';
});
echo json_encode($a);
// {"0":"a","2":"c"}

// re-index the array to remove gaps
$a = array_values($a);
echo json_encode($a);
// ["a","c"]
Homely Hamster

php json_encode menghapus indeks array

$arr['dates'] = array_values($arr['dates']);
//..
$arr = json_encode($arr);
Indian Gooner

Jawaban yang mirip dengan “php json_encode menghapus indeks array”

Pertanyaan yang mirip dengan “php json_encode menghapus indeks array”

Lebih banyak jawaban terkait untuk “php json_encode menghapus indeks array” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya