ID: 24396 Updated by: [EMAIL PROTECTED] Reported By: jlim at natsoft dot com -Status: Open +Status: Closed Bug Type: Scripting Engine problem Operating System: Windows XP PHP Version: 5.0.0b1 (beta1) New Comment:
This bug has been fixed in CVS. In case this was a PHP problem, snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. In case this was a documentation problem, the fix will show up soon at http://www.php.net/manual/. In case this was a PHP.net website problem, the change will show up on the PHP.net site and on the mirror sites in short time. Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2003-06-30 08:46:55] sniper at iki dot fi <?php $arr = array('a' => 1, 'b' => 2, 'c' => 3); echo PHP_VERSION."<br>"; print_r($arr); foreach($arr as $k=>$v) { global $$k; // comment this out and it works in PHP 5 too.. print " ($k=>$v) "; $$k = $v; } ------------------------------------------------------------------------ [2003-06-30 05:48:29] [EMAIL PROTECTED] 4.3.3RC2-dev Array ( [a] => 1 [b] => 2 [c] => 3 ) (a=>1) (b=>2) (c=>3) (just checked that this is just 5.0.0b1 issue) ------------------------------------------------------------------------ [2003-06-29 23:48:26] jlim at natsoft dot com Description: ------------ The following script below fails (missing $k). Reproduce code: --------------- <?php error_reporting(E_ALL); echo PHP_VERSION."<br>"; print_r($_GET); foreach($_GET as $k=>$v) { global $$k; print " ($k=>$v) "; $$k = $v; } ?> Expected result: ---------------- 5.0.0b1 Array ( [a] => 1 [b] => 2 [c] => 3 ) (a=>1) (b=>2) (c=>3) Actual result: -------------- 5.0.0b1 Array ( [a] => 1 [b] => 2 [c] => 3 ) (=>1) (=>2) (=>3) ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=24396&edit=1
