mirror of
https://github.com/php/php-src.git
synced 2024-11-28 04:14:26 +08:00
17 lines
208 B
Plaintext
17 lines
208 B
Plaintext
|
--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
|