123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- --TEST--
- Temporary leak with foreach
- --FILE--
- <?php
- function ops() {
- throw new Exception();
- }
- $a = [new stdClass, new stdClass];
- foreach ([$a, [new stdClass]] as $b) {
- switch ($b[0]) {
- case false:
- break;
- default:
- try {
- $x = 2;
- $y = new stdClass;
- while ($x-- && new stdClass) {
- $r = [$x] + ($y ? ((array) $x) + [2] : ops());
- $y = (array) $y;
- }
- } catch (Exception $e) {
- }
- }
- }
- foreach ([$a, [new stdClass]] as $b) {
- try {
- switch ($b[0]) {
- case false:
- break;
- default:
- $x = 2;
- $y = new stdClass;
- while ($x-- && new stdClass) {
- $r = [$x] + ($y ? ((array) $x) + [2] : ops());
- $y = (array) $y;
- }
- }
- } catch (Exception $e) {
- }
- }
- ?>
- ==DONE==
- --EXPECT--
- ==DONE==
|