|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patch wtf.txt for Unknown/Other Function Bug #52580Patch version 2010-08-10 20:59 UTC Return to Bug #52580 | Download this patchPatch Revisions: Developer: dijincorp@mail.ru
$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
|
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 02:00:01 2025 UTC |