php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #28072 static array with some constant keys will be incorrectly ordered
Submitted: 2004-04-20 07:54 UTC Modified: 2005-07-07 17:27 UTC
From: pages at inrp dot fr Assigned: dmitry (profile)
Status: Closed Package: Scripting Engine problem
PHP Version: 5CVS, 4CVS (2005-06-19) OS: *
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: pages at inrp dot fr
New email:
PHP Version: OS:

 

 [2004-04-20 07:54 UTC] 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
)


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-07-07 17:27 UTC] dmitry@php.net
Fixed in CVS HEAD.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Thu Jan 02 12:01:29 2025 UTC