object_gc_in_shutdown.phpt 236 B

1234567891011121314
  1. --TEST--
  2. Bug object gc not working in shutdown
  3. --FILE--
  4. <?php
  5. ini_set('memory_limit', '2M');
  6. register_shutdown_function(function () {
  7. for ($n = 1000 * 1000; $n--;) {
  8. new stdClass;
  9. }
  10. echo "OK\n";
  11. });
  12. ?>
  13. --EXPECT--
  14. OK