ID: 34698 Updated by: [EMAIL PROTECTED] Reported By: andrius dot steponavicius at gmail dot com -Status: Open +Status: Bogus Bug Type: *General Issues Operating System: win32 PHP Version: 4.4.0 New Comment:
Thank you for taking the time to write to us, but this is not a bug. Please double-check the documentation available at http://www.php.net/manual/ and the instructions on how to report a bug at http://bugs.php.net/how-to-report.php . Previous Comments: ------------------------------------------------------------------------ [2005-10-01 11:33:44] andrius dot steponavicius at gmail dot com Description: ------------ There is a bug while accessing superglobal variables by they names inside functions or methods... Reproduce code: --------------- function test() { var_dump($_REQUEST); var_dump(${'_REQUEST'}); $temp = '_REQUEST'; var_dump(${$temp}); } test(); Expected result: ---------------- array(...){...} array(...){...} array(...){...} Actual result: -------------- array(...){...} array(...){...} Notice: Undefined variable: _REQUEST in ... null ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=34698&edit=1
