我想知道在使用多媒体数组时,如果某个键相同,如果某个键相同,有没有办法将其他键的内容组合到自己的数组中?
像这样的东西:
// name is the same in both arrays
array(
array(
'name' => 'Pepsi',
'store' => 'Over here',
'number' => '1234567'
),
array(
'name' => 'Pepsi',
'store' => 'Over here',
'number' => '5556734'
)
)
变成这样的东西
array(
array(
'name' => 'Pepsi',
'store' => array('Over here', 'Over here'),
'number' => array('1234567', '5556734')
)
)
定义键是检查name
元素是否与其他数组相同。