Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to remove values from an array in PHP?

I have this

$arr1 = array('orange','banana');
$arr2 = array('broccli','tomato','mixedvegies','orange','veg2');

how would I take complete $arr1 from $arr2 so that arr2 has

$arr2 = array('broccli','tomato','mixedvegies','veg2');
share|improve this question

marked as duplicate by hakre, ircmaxell, Jocelyn, PeeHaa 埽, Eitan T Sep 29 '12 at 15:13

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

array_diff($arr2, $arr1);

array_diff returns an array with all the elements not in the second (or third, fourth... optional args).

share|improve this answer

You can use array_diff for this:

$uniqueItems = array_diff($arr2, $arr1);
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.