summaryrefslogtreecommitdiff
path: root/Zend/tests/gc_009.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/gc_009.phpt')
-rw-r--r--Zend/tests/gc_009.phpt27
1 files changed, 27 insertions, 0 deletions
diff --git a/Zend/tests/gc_009.phpt b/Zend/tests/gc_009.phpt
new file mode 100644
index 0000000..263d31f
--- /dev/null
+++ b/Zend/tests/gc_009.phpt
@@ -0,0 +1,27 @@
+--TEST--
+GC 009: Unreferensed array-object cycle
+--INI--
+zend.enable_gc=1
+--FILE--
+<?php
+$a = array();
+$a[0] = new stdClass();
+$a[0]->a = array();
+$a[0]->a[0] =& $a[0];
+var_dump($a[0]);
+var_dump(gc_collect_cycles());
+unset($a);
+var_dump(gc_collect_cycles());
+echo "ok\n"
+?>
+--EXPECTF--
+object(stdClass)#%d (1) {
+ ["a"]=>
+ array(1) {
+ [0]=>
+ *RECURSION*
+ }
+}
+int(0)
+int(2)
+ok