gc_027.phpt 210 B

123456789101112131415
  1. --TEST--
  2. GC 027: GC and properties of internal classes
  3. --INI--
  4. zend.enable_gc=1
  5. --FILE--
  6. <?php
  7. try {
  8. throw new Exception();
  9. } catch (Exception $e) {
  10. gc_collect_cycles();
  11. }
  12. echo "ok\n";
  13. ?>
  14. --EXPECT--
  15. ok