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

 ID:                 52580
 Updated by:         degeb...@php.net
 Reported by:        dijincorp at mail dot ru
 Summary:            I like see string "test"
-Status:             Open
+Status:             Bogus
 Type:               Bug
 Package:            Unknown/Other Function
 Operating System:   Windows,Linux
 PHP Version:        5.2.14
 Block user comment: N

 New Comment:

Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions.  Due to the volume
of reports we can not explain in detail here why your report is not
a bug.  The support channels will be able to provide an explanation
for you.

Thank you for your interest in PHP.




Previous Comments:
------------------------------------------------------------------------
[2010-08-10 22:57:09] dijincorp at mail dot ru

Description:
------------
I like see string "test"



$variable = "test";

$var_1 = "variable";

echo ${$var_1}; //work



$var_2['x2'] = "test";

$var_2['x'] = "var_2";

echo ${$var_2['x']}['x2']; //work



$var_3['x2'] = "test";

$var_3['x'] = "var_3['x2']";

echo ${$var_3['x']}; //dont work



Sorry for my English.

Test script:
---------------
$var_3['x2'] = "test";

$var_3['x'] = "var_3['x2']";

echo ${$var_3['x']};

Expected result:
----------------
Notice: Undefined variable: var_3['x2']

Actual result:
--------------
string "test"


------------------------------------------------------------------------



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

Reply via email to