“PHP JSON_ENCODOE Eliminar el índice de matriz” Código de respuesta

Cómo eliminar el índice de matriz de JSON en 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_ENCODOE Eliminar el índice de matriz

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

Respuestas similares a “PHP JSON_ENCODOE Eliminar el índice de matriz”

Preguntas similares a “PHP JSON_ENCODOE Eliminar el índice de matriz”

Más respuestas relacionadas con “PHP JSON_ENCODOE Eliminar el índice de matriz” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código