0
元素我有數組,看起來像這樣:刪除在array1是在數組2
$array1 = array(
'[email protected]' => array(
'peter' => 'Smith',
),
'[email protected]' => array(
'john' => 'Smith',
),
'[email protected]' => array(
'louis' => 'Smith',
),
'[email protected]' => array(
'jane' => 'Smith',
),
);
$array2 = array(
'0' => '[email protected]',
'1' => '[email protected]',
);
如何刪除陣列1匹配數組2的數組元素?
很好的回答,當場。 – dotty 2011-06-10 13:34:52
如果我看到這個回覆,我應該沒有在這個問題上回復過(: – 2011-06-10 13:39:37
超級回答,簡單明瞭! – Cudos 2011-06-10 20:10:10