-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/tests/lang/
File Upload :
Current File : //usr/src/php/tests/lang/bug24396.phpt

--TEST--
Bug #24396 (global $$variable broken)
--FILE--
<?php

$arr = array('a' => 1, 'b' => 2, 'c' => 3);

foreach($arr as $k=>$v)  {
    global $$k; // comment this out and it works in PHP 5 too..
               
    echo "($k => $v)\n";
                       
    $$k = $v;          
}
?>
--EXPECT--
(a => 1)
(b => 2)
(c => 3)

Copyright © 2017 || Recoded By Mr.Bumblebee