我试图理解 PHP 数组方法,所以我更喜欢使用数组方法来解决这个问题。
这是我的数据:
$dataA =>
array
0 =>
array
'type' => string 'name' (length=4)
'key' => string 'keywords' (length=8)
'content' => string 'keywordA' (length=14)
$dataB =>
array
1 =>
array
'type' => string 'name' (length=4)
'key' => string 'keywords' (length=8)
'content' => string 'keywordB' (length=14)
我想做的是合并两个数组,最后的content
键是:
$finalData =>
array
0 =>
array
'type' => string 'name' (length=4)
'key' => string 'keywords' (length=8)
'content' => string 'keywordB' (length=14)
^-- notice here that the content has changed based on the fact that 'key' for both is 'keywords'
如您所见,最终的内容值来自$dataB。