Re: Array differences

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Ashley M. Kirchner wrote:

	$array1 = array(1, 2, 3, 4, 5, 6);
	$array2 = array(1, 3, 2, 8, 9);
	$diff1  = array_diff($array1, $array2);
	$diff2  = array_diff($array2, $array1);
	$result = array_unique(array_merge($diff1, $diff2));

	=> (4, 5, 6, 8, 9)

Hi Ash,

Isn't the array_unique() unnecessary?

Mike

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux