|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-09-11 15:55 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 05 03:00:01 2025 UTC |
Description: ------------ This is a continuation of #42622 - I'm sorry I had to open a new bug report, but the old one was marked as bogus and could not comment on it. Reproduce code: --------------- class Foo { function example( $name ) { $bar = $this->getBar(); echo $bar->$name; } } Expected result: ---------------- Should work for both example('abc') and example('a["b"]') Actual result: -------------- Doesn't work for example('a["b"]')