次の配列が与えられた場合:
Array
(
[0] => Array
(
[id_contract] => 1
[contract_months] => 5
[months_with_expenses] => 1
)
[1] => Array
(
[id_contract] => 2
[contract_months] => 12
[months_with_expenses] => 0
)
[2] => Array
(
[id_contract] => 3
[contract_months] => 1
[months_with_expenses] => 1
)
)
キー「contract_months」がキー「month_with_expenses」と一致しない配列からすべての要素を削除するにはどうすればよいですか?
私はPHPを使用しています。