Hi, i'm trying to get the difference between two arrays, but with array_diff, array_diff_assoc, array_diff_key i can't get what i want..
Array 1 :
  0 => 424012,
  1 => 423000,
  2 => 425010,
  3 => 431447,
  4 => 421001,
  5 => 421002,
Array 2 :
  0 => 424012,
  1 => 423000,
  2 => 425010,
  3 => 431447,
  4 => 431447,
  5 => 421001,
  6 => 421002,
array_diff =  array () 
// empty
jarray_diff_assoc = array ( 
  4 => 431447,
  5 => 421001,
  6 => 421002,
) 
// OK but too much :)
array_diff_key = array(
6 => 421002
) 
// nope i don't want that :(
i want 431447, cause it's only one time in the first array and twice in the second.
Regards, Tony