我正在處理一個數組,我已經得到了答案,但我需要爲我的數組再添加一個數組層。下面是我的例子:如何使數組變成子數組?
這是我的數組:
$newOptions = array();
foreach ($community_comment as $option) {
$date = $option['date'];
$text = $option['text'];
$newOptions[$date][] = $text;
}
,這是我的結果:
Array
(
[2014-05-14] => Array
(
[0] => test test test test
[1] => test2
)
)
,但我想我的結果是這樣的:
Array
(
[0]=>Array(
[2014-05-14] => Array
(
[0] => test test test test
[1] => test2
)
)
)
希望我能得到一些幫助。先謝謝了。
只需添加'$ newOptions = array($ newOptions,)'。 – Holt
試試$ newOptions [] [$ date] [] –