I have two arrays:
$A = array('a','b','c','d')
$c = array('b','c','e','f')
I want to get a new array containing items not in array $A. So it would be:
$result = array('e','f');
because 'e' and 'f' are not in $A.
|
I have two arrays:
I want to get a new array containing items not in array
because |
||||
|
|
|
Use array_diff
|
||||
|
|
|
Use
|
|||
|
|
|
Pseduo Code for General Implementation Disclaimer: Not familiar with PHP, other answers indicate there are a lot quicker ways of doing this :) Loop through your first array:
|
|||
|
|