mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
28 lines
487 B
PHP
28 lines
487 B
PHP
--TEST--
|
|
Bug #53071 (Usage of SPLObjectStorage defeats gc_collect_cycles)
|
|
--FILE--
|
|
<?php
|
|
gc_enable();
|
|
class myClass
|
|
{
|
|
public $member;
|
|
}
|
|
function LimitedScope()
|
|
{
|
|
$myA = new myClass();
|
|
$myB = new SplObjectStorage();
|
|
$myC = new myClass();
|
|
$myC->member = $myA; // myC has a referece to myA
|
|
$myB->Attach($myC); // myB attaches myC
|
|
$myA->member = $myB; // myA has myB, comleting the cycle
|
|
}
|
|
LimitedScope();
|
|
var_dump(gc_collect_cycles());
|
|
|
|
echo "Done.\n";
|
|
|
|
?>
|
|
--EXPECTF--
|
|
int(5)
|
|
Done.
|