ID: 28072
Updated by: [EMAIL PROTECTED]
Reported By: pages at inrp dot fr
-Status: Verified
+Status: Assigned
Bug Type: Scripting Engine problem
Operating System: *
PHP Version: 5CVS, 4CVS (2005-06-19)
-Assigned To:
+Assigned To: dmitry
Previous Comments:
------------------------------------------------------------------------
[2004-04-20 07:54:00] pages at inrp dot fr
Description:
------------
Initialising a static associative array using constants as keys will
give an incorrectly ordered array. Apparently, elements with constant
keys will always appear AFTER elements without constant keys.
Reproduce code:
---------------
<?php
define("FIRST_KEY", "a");
define("THIRD_KEY", "c");
function test()
{
static $arr = array(
FIRST_KEY => "111",
"b" => "222",
THIRD_KEY => "333",
"d" => "444"
);
print_r($arr);
}
test();
?>
Expected result:
----------------
Array
(
[a] => 111
[b] => 222
[c] => 333
[d] => 444
)
Actual result:
--------------
Array
(
[b] => 222
[d] => 444
[a] => 111
[c] => 333
)
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=28072&edit=1