“PHP JSON_Encode entfernen Sie Array -Index” Code-Antworten

So entfernen Sie den Array -Index von JSON in 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 entfernen Sie Array -Index

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

Ähnliche Antworten wie “PHP JSON_Encode entfernen Sie Array -Index”

Fragen ähnlich wie “PHP JSON_Encode entfernen Sie Array -Index”

Weitere verwandte Antworten zu “PHP JSON_Encode entfernen Sie Array -Index” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen