timeout_variation_8.phpt 321 B

123456789101112131415161718
  1. --TEST--
  2. Timeout within foreach loop
  3. --SKIPIF--
  4. <?php
  5. if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
  6. ?>
  7. --FILE--
  8. <?php
  9. set_time_limit(1);
  10. foreach (new InfiniteIterator(new ArrayIterator([1])) as $i) {
  11. }
  12. ?>
  13. never reached here
  14. --EXPECTF--
  15. Fatal error: Maximum execution time of 1 second exceeded in %s on line %d