11 lines
219 B
Plaintext
11 lines
219 B
Plaintext
|
|
--TEST--
|
||
|
|
Cannot use $GLOBALS as foreach result variable
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
foreach ([1] as $GLOBALS) {}
|
||
|
|
|
||
|
|
?>
|
||
|
|
--EXPECTF--
|
||
|
|
Fatal error: $GLOBALS can only be modified using the $GLOBALS[$name] = $value syntax in %s on line %d
|