12345678910111213141516171819202122232425262728 |
- --TEST--
- Bug
- --FILE--
- <?php
- class constructs_in_destructor {
- public function __destruct() {
-
-
- for ($i = 0; $i < 10000; ++$i) {
- $GLOBALS["a$i"] = new stdClass;
- }
-
- }
- }
- $a = new constructs_in_destructor;
- $a->a = $a;
- for ($i = 0; $i < 200; ++$i) {
- $GLOBALS["b$i"] = new stdClass;
- }
- ?>
- okey
- --EXPECT--
- okey
|