mirror of
https://github.com/php/php-src.git
synced 2024-11-27 20:03:40 +08:00
7aacc705d0
Closes GH-5958
16 lines
210 B
PHP
16 lines
210 B
PHP
--TEST--
|
|
GC 027: GC and properties of internal classes
|
|
--INI--
|
|
zend.enable_gc=1
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
throw new Exception();
|
|
} catch (Exception $e) {
|
|
gc_collect_cycles();
|
|
}
|
|
echo "ok\n";
|
|
?>
|
|
--EXPECT--
|
|
ok
|