ID: 12398
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Closed
Bug Type: Class/Object related
Operating System: Windows 2000
PHP Version: 4.0.6
New Comment:

Works for me with PHP 4.1.0RC1


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

[2001-07-26 09:35:43] [EMAIL PROTECTED]

 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 this 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