blob: 01d045744a02bdede9b2c88548ab098299b3f3cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--TEST--
Bug #35470 (Assigning global using variable name from array doesn't function)
--FILE--
<?php
$x = array("test", "55");
global ${$x[0]};
${$x[0]} = $x[1];
echo "Test: $test\n";
?>
--EXPECT--
Test: 55
|