From:             adrian dot gheorghe at gmail dot com
Operating system: Windows
PHP version:      5.2.4
PHP Bug Type:     Variables related
Bug description:  Cannot use $object->{'prop["key"]}

Description:
------------
If this is not going to be supported, it should at least be documented. I
couldn't find anything related to this limitation.

Reproduce code:
---------------
<?php
class Foo
{
        public $a = 3;
        public $b = array( 'c' => 9 );
}

$bar = new Foo;
echo $bar->{'a'}; // works
echo $bar->{'b["c"]'}; // doesn't work
?>

Expected result:
----------------
Output:

3
9

Actual result:
--------------
Output:

3
Notice: Undefined property: Foo::$b["c"] in
C:\www\project.local.ro\trunk\Source\public\test.php on line 11

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

Reply via email to