php-src/Zend/tests/gc_027.phpt

15 lines
201 B
Plaintext
Raw Normal View History

2008-01-24 10:49:26 +00:00
--TEST--
GC 027: GC and properties of internal classes
2010-03-03 17:53:15 +00:00
--INI--
zend.enable_gc=1
2008-01-24 10:49:26 +00:00
--FILE--
<?php
try {
throw new Exception();
} catch (Exception $e) {
gc_collect_cycles();
}
echo "ok\n";
--EXPECT--
ok