ID: 20766
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Bogus
Bug Type: Arrays related
Operating System: Linux 2.2.20
PHP Version: 4.2.3
New Comment:
It does work with
$t1[] = $t2[];
But it's inneficient.
Previous Comments:
------------------------------------------------------------------------
[2002-12-02 18:56:18] [EMAIL PROTECTED]
It's printing just the correct values.
Your $t2 array does not contain same array as $t1 is..
(try adding this: $t2[] = $t1; and you'll see..)
------------------------------------------------------------------------
[2002-12-02 12:41:23] [EMAIL PROTECTED]
$t1[] = "banana";
$t1[] = "orange";
$t1[] = "kiwi";
$t2[] = "car";
$t2[] = "kiwi";
$t2[] = "cat";
print "Kiwi key: ".array_search($t1,$t2);
print "Car key: ".array_search("car",$t2);
this code print: Kiwi key: Car key: 0
Should print: Kiwi key: 1 Car key: 0
Apache: 1.3.26 rh 6.2
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=20766&edit=1