php-src/Zend/tests/globals_005.phpt

17 lines
208 B
Plaintext
Raw Normal View History

2015-02-02 17:44:16 +00:00
--TEST--
$GLOBALS resize
--FILE--
<?php
function foo() {
for ($i = 0; $i < 100; $i++) {
$GLOBALS["A". $i] = 1; //trigger resize
}
return "ops";
}
$GLOBALS[foo()] = "ops";
?>
DONE
--EXPECT--
DONE