gc_024.phpt 214 B

123456789101112131415
  1. --TEST--
  2. GC 024: GC and objects with non-standard handlers
  3. --INI--
  4. zend.enable_gc=1
  5. --FILE--
  6. <?php
  7. $a = new ArrayObject();
  8. $a[0] = $a;
  9. unset($a);
  10. var_dump(gc_collect_cycles());
  11. echo "ok\n";
  12. ?>
  13. --EXPECT--
  14. int(2)
  15. ok