我使用array_add($array, 'key', 'value');
创建数据结构。
foreach ($archives as $archive){
$results = array_add($results, $archive->year,
array($archive->month => array('name' => $archive->month_name)));
}
如果我json_encode()
$results
我得到此输出:
{
2015: {
02: {name:'February'}
}
}
但我想要的是:
{
2015: {
02: {name:'February'},
01: {name:'January'}
}
}
当然,这也适用于不同的年份。
答案 0 :(得分:1)
回应我的评论 - 这就是我要做的事情:
foreach ($archives as $archive)
{
if (!isset($results[$archive->year]))
{//if the year-key doesn't exist yet, create it
//if it already exists, this part will be skipped
$results[$archive->year] = array();
}
//then add the values
$results[$archive->year][$archive->month] = array(
'name' => $archive->month_name
);
}
这就是它的全部,不需要自制功能或类似的东西
答案 1 :(得分:0)
怎么样 array_push($ array,' key',' value');