php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #12398 Problem with associative arrays, used within classes
Submitted: 2001-07-26 09:35 UTC Modified: 2001-10-21 19:41 UTC
From: flying at dom dot natm dot ru Assigned:
Status: Closed Package: Class/Object related
PHP Version: 4.0.6 OS: Windows 2000
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: flying at dom dot natm dot ru
New email:
PHP Version: OS:

 

 [2001-07-26 09:35 UTC] flying at dom dot natm dot ru
 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'.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-10-21 19:41 UTC] sniper@php.net
Works for me with PHP 4.1.0RC1

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Apr 28 00:01:28 2024 UTC