I have an array $result as such:
[0] => Array (
  [0] => Array (
    [itemid] => 1
    [name] => A
  )
  [1] => Array (
    [itemid] => 2
    [name] => B
  )
)
[1] => Array (
  [0] => Array (
    [itemid] => 3
    [name] => C
  )
  [1] => Array (
    [itemid] => 2
    [name] => B
  )
)
and an array $items as such:
[0] => Array (
  [itemid] => 2
  [name] => B
)
[1] => Array (
  [itemid] => 4
  [name] => D
) 
How do I remove all items from the $result array, that occur in the $items array? In this case, the $result would become:
[0] => Array (
  [0] => Array (
    [itemid] => 1
    [name] => A
  )
)
[1] => Array (
  [0] => Array (
    [itemid] => 3
    [name] => C
  )
)
Since the question is mostly code, here's some extra characters to make StackOverflow accept the question.
 
    