|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-01-30 10:25 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 23 11:00:01 2025 UTC |
Description: ------------ _REQUEST variable is not populated until it's called directly Reproduce code: --------------- <?php // test.php?param1=value1 error_reporting(E_ALL); var_export($GLOBALS['_REQUEST']); ?> Expected result: ---------------- array('param1' => 'value1'); Actual result: -------------- Notice: Undefined index: _REQUEST in /home/saiman/www/test.php on line 4 NULL