$condition1 = ['a' => true, 'b' => true, 'c' => false ];
$condition2 = ['a' => true, 'b' => false];
$combibe = magic ( $sondition1, $condition2 );
预期输出:
print_r($combine);
['a' => true, 'b' => false, 'c' => false]
如果没有可以解决上述问题的魔术方法,那么处理这些情况的最佳方法是什么。我认为 array_merge 但它最终会创建一个组合数组,但不是我预期的输出。
波斯汪