diff options
-rw-r--r-- | Zend/tests/gc_022.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/tests/gc_022.phpt b/Zend/tests/gc_022.phpt index 5d7bb8494b..cb9e50a43e 100644 --- a/Zend/tests/gc_022.phpt +++ b/Zend/tests/gc_022.phpt @@ -7,7 +7,7 @@ zend.enable_gc=1 <?php $a = array(array()); $a[0][0] =& $a[0]; -$s = array(1) + unserialize(serialize(&$a[0])); +$s = array(1) + unserialize(serialize($a[0])); var_dump(gc_collect_cycles()); echo "ok\n" ?> |