0
同じIDに基づいて2つの多次元配列をマージするときに、1つの問題に直面しています。同じIDに基づいて2つの多次元配列をマージする
以下の例では、Array1
とArray2
の2つの配列を作成しました。両方の配列には、ID
プロパティを持つオブジェクトが含まれています。 ID
プロパティに基づいて、配列が合併し、結果の配列を取得する必要があります。ARRAY2
Array
(
[0] => stdClass Object
(
[ID] =>2
[name] => test1
)
[1] => stdClass Object
(
[ID] => 3
[name] => test2
)
[2] => stdClass Object
(
[ID] =>4
[name] => test3
)
[3] => stdClass Object
(
[ID] => 5
[name] => test4
)
)
Result_array
Array
(
[0] => stdClass Object
(
[ID] =>2
[name] => test1
[claimtotal] =>
[total] =>
)
[1] => stdClass Object
(
[ID] => 3
[name] => test2
[claimtotal] =>
[total] => 4
)
[2] => stdClass Object
(
[ID] =>4
[name] => test3
[claimtotal] => 20
[total] => 1
)
[3] => stdClass Object
(
[ID] => 5
[name] => test4
[claimtotal] =>
[total] =>
)
)
を
ARRAY1
Array
(
[0] => stdClass Object
(
[claimtotal] =>
[total] => 4
[ID] => 3
)
[1] => stdClass Object
(
[claimtotal] => 20
[total] => 1
[ID] => 4
)
)
を私はこれを達成するにはどうすればよいです?
希望の結果を得るために試したことをお見せください – Epodax