I'm using array_add($array, 'key', 'value'); to create the data structure.
foreach ($archives as $archive){
$results = array_add($results, $archive->year,
array($archive->month => array('name' => $archive->month_name)));
}
If i json_encode()the $results i get this output:
{
2015: {
02: {name:'February'}
}
}
But i want something like:
{
2015: {
02: {name:'February'},
01: {name:'January'}
}
}
And of course this should works for different years too.
array_addisn't a core php function, can you show the function aswell? Besides$resultsis overwritten in every iteration.array_add), when you could just write$results[$archive->year] = array($archive->month => array('name' => $archive->month_name));? Oh, and could it be that "January" isn't int$resultsbecause it's not in the$archivesto begin with? check those values, too$results[$archive->year]doesn't already exist, if it does, your code currently reassigns it (overwriting the array that it already holds), I'll post an answer