ID: 11893 Comment by: fuck-black316 at hotmail dot com Reported By: michael at zaphod dot rhein-neckar dot de Status: Bogus Bug Type: Arrays related Operating System: Linux, FreeBSD, OpenBSD (Any?) PHP Version: 4.0.6 New Comment:
<a href=http://69-tits-warez-movie.da.ru>fuck black</a> Previous Comments: ------------------------------------------------------------------------ [2001-09-14 19:35:38] [EMAIL PROTECTED] array_intersect isn't supposed to handle multi-dimmed arrays. Where have you read that? Not in the manual in any case. ------------------------------------------------------------------------ [2001-07-04 19:49:53] michael at zaphod dot rhein-neckar dot de [EMAIL PROTECTED]:~>php <? $a = array(array(1, "a"), array(2, "b"), array(3, "c")); $b = array(array(1, "a"), array(2, "b"), array(4, "d")); $c = array_intersect($a, $b); var_dump($c); ?> X-Powered-By: PHP/4.0.6 Content-type: text/html array(3) { [0]=> array(2) { [0]=> int(1) [1]=> string(1) "a" } [1]=> array(2) { [0]=> int(2) [1]=> string(1) "b" } [2]=> array(2) { [0]=> int(3) [1]=> string(1) "c" } } The same thing happens in 4.0.5. For comparison 4.0.4pl1-Output (and as I expect it to be): X-Powered-By: PHP/4.0.4pl1 Content-type: text/html array(2) { [0]=> array(2) { [0]=> int(1) [1]=> string(1) "a" } [1]=> array(2) { [0]=> int(2) [1]=> string(1) "b" } } ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=11893&edit=1
