ID:               39383
 Updated by:       [EMAIL PROTECTED]
 Reported By:      lamotkin at softhome dot net
-Status:           Open
+Status:           Bogus
 Bug Type:         Arrays related
 Operating System: Windows 98
 PHP Version:      5.2.0
 New Comment:

Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

.


Previous Comments:
------------------------------------------------------------------------

[2006-11-04 20:33:55] lamotkin at softhome dot net

Description:
------------
PHP erroneously converts keys to integer if possible,
but my script is type-sensitive with that code.


Reproduce code:
---------------
$Test =
array(  "" => "No set",
        "1" => "Yes",
        "0" => "No");
var_dump($Test);
echo "<p>";
$Test =
array(  "" => "No set",
        1 => "Yes",
        0 => "No");
var_dump($Test);
echo "<p>";


Expected result:
----------------
'var_dump's must NOT be the same


Actual result:
--------------
'var_dump's ARE the same



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=39383&edit=1

Reply via email to