我有一个需要分成两部分的数组(见下文):[items] => Array
(
[product] => Humbucker
[product_price] => 12
[model] => Single Humbucker
[model_price] => 12
[guitarbrands] => fdfdfdf
[guitarbrands_price] => 23
[neckfretboard] => 33
[neckfretboard_price] => 22
[guitarmodels] => fdfdsf
[guitarmodels_price] => 22
)
我想要这个数组
[items] => Array
(
[product] => array(
[product] => Humbucker
[product_price] => 12
)
[model] => array(
[model] => Single Humbucker
[model_price] => 12
)
[guitarbrands] =>array(
[guitarmodels] => fdfdsf
[guitarbrands_price] => 23
)
)