From:             justin dot carlson at gmail dot com
Operating system: Windows XP
PHP version:      5.3.0
PHP Bug Type:     Arrays related
Bug description:  array item definition problem?

Description:
------------
Array items are not as defined when using the same key twice.

I have not yet tested this outside of a class.







Reproduce code:
---------------
<?php

Foo::Bar();

abstract class Foo {

        const A = 1;
        const B = 2;
        const C = 3;
        const D = 1;
     
        protected static $sample = array(
                self::A => 'Apple',
                self::B => 'Boy',
                self::C => 'Cat',
                self::D => 'Dog'
                );
       
    public static function Bar() {
        print_R( self::$sample );
    }
}       
?>

Expected result:
----------------
In PHP 5.2.x:

Array
(
    [2] => Boy
    [3] => Cat
    [1] => Dog
)

This is what I would expect to be valid, as the 2nd entry would override
the first, making "Dog" the correct value for index 1.

Actual result:
--------------
In PHP 5.3.x:

Array
(
    [1] => Apple
    [2] => Boy
    [3] => Cat
)

This was not expected, as the 1st entry maintained it's value.


-- 
Edit bug report at http://bugs.php.net/?id=48858&edit=1
-- 
Try a CVS snapshot (PHP 5.2):        
http://bugs.php.net/fix.php?id=48858&r=trysnapshot52
Try a CVS snapshot (PHP 5.3):        
http://bugs.php.net/fix.php?id=48858&r=trysnapshot53
Try a CVS snapshot (PHP 6.0):        
http://bugs.php.net/fix.php?id=48858&r=trysnapshot60
Fixed in CVS:                        
http://bugs.php.net/fix.php?id=48858&r=fixedcvs
Fixed in CVS and need be documented: 
http://bugs.php.net/fix.php?id=48858&r=needdocs
Fixed in release:                    
http://bugs.php.net/fix.php?id=48858&r=alreadyfixed
Need backtrace:                      
http://bugs.php.net/fix.php?id=48858&r=needtrace
Need Reproduce Script:               
http://bugs.php.net/fix.php?id=48858&r=needscript
Try newer version:                   
http://bugs.php.net/fix.php?id=48858&r=oldversion
Not developer issue:                 
http://bugs.php.net/fix.php?id=48858&r=support
Expected behavior:                   
http://bugs.php.net/fix.php?id=48858&r=notwrong
Not enough info:                     
http://bugs.php.net/fix.php?id=48858&r=notenoughinfo
Submitted twice:                     
http://bugs.php.net/fix.php?id=48858&r=submittedtwice
register_globals:                    
http://bugs.php.net/fix.php?id=48858&r=globals
PHP 4 support discontinued:          http://bugs.php.net/fix.php?id=48858&r=php4
Daylight Savings:                    http://bugs.php.net/fix.php?id=48858&r=dst
IIS Stability:                       
http://bugs.php.net/fix.php?id=48858&r=isapi
Install GNU Sed:                     
http://bugs.php.net/fix.php?id=48858&r=gnused
Floating point limitations:          
http://bugs.php.net/fix.php?id=48858&r=float
No Zend Extensions:                  
http://bugs.php.net/fix.php?id=48858&r=nozend
MySQL Configuration Error:           
http://bugs.php.net/fix.php?id=48858&r=mysqlcfg

Reply via email to