From:             [EMAIL PROTECTED]
Operating system: Windows 2000
PHP version:      4.0.6
PHP Bug Type:     Class/Object related
Bug description:  Problem with associative arrays, used within classes

 There seems to be a problem with associative arrays, used within
classes.
But this problem persist only in arrays, which are use contants as its
keys.
There is a small test case which demonstrates a problem:

<?php
define("constant_1",1);
define("constant_2",2);
define("constant_3",3);

class myClass
{
    var $arr = array(
            constant_1 => "value 1",
            constant_2 => "value 2",
            constant_3 => "value 3"
        );

    function testFunc($index)
    {
        return((isset($this->arr[$index]))?'true':'false');
    }
};

$class = new myClass();
echo $class->testFunc(constant_2);
?>

 It is easy to see, that this piece of code must write 'true' as its
result, because
testFunc() method called with constant, which is actually present in
array.
But testFunc() returns 'false' instead. It's because array keys are
incorrectly treated as
strings instead of actual constant values (so, for example
$class->testFunc("constant_2"))
will return 'true'.

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


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to