Skip to content

Instantly share code, notes, and snippets.

@waspinator
Created August 24, 2011 18:38
Show Gist options
  • Save waspinator/1168819 to your computer and use it in GitHub Desktop.
Save waspinator/1168819 to your computer and use it in GitHub Desktop.
$array_a = array(0 =>
array('Document' =>
array('id' => 1)),
array('Document' =>
array('id' => 2)),
array('Document' =>
array('id' => 3)),
);
$array_b = array(0 =>
array('Document' =>
array('id' => 2)),
array('Document' =>
array('id' => 2)),
array('Document' =>
array('id' => 4)),
);
$result = array_intersect($array_a, $array_b);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment