Necesito comparar dos Arrays en ambos sentidos y obtener lo que hay en común entre ambos.
Pongo este ejemplo para explicarme mejor:
Código PHP:
$array1 = array(
array('ID' => '1111', 'text' => 'none'),
array('ID' => '2222', 'text' => 'have fun day'),
array('ID' => '3333', 'text' => 'arigato'),
array('ID' => '4444', 'text' => 'none')
);
$array2 = array(
array('ID' => '2222', 'text' => 'none'),
array('ID' => '3333', 'text' => 'have fun day'),
array('ID' => '4444', 'text' => 'arigato'),
array('ID' => '5555', 'text' => 'none')
);
Código PHP:
$output = array(
array('ID' => '2222', 'text' => 'none'),
array('ID' => '3333', 'text' => 'have fun day'),
array('ID' => '4444', 'text' => 'arigato')
);
Un saludo a todos! :)