我在使用这样的继承静态变量设置的对象的脚本时遇到了一些内存问题。
class a
{
public static $a = "a";
}
class b extends a
{
private $instanceVar = 'hey';
private $otherVar = 'you';
public function DoStuff()
{
echo self::$a;
}
}
然后使用这样的类的代码
while(condition)
{
$obj = new b();
$obj -> DoStuff();
unset($obj);
}
我的问题是,取消设置 obj 会触发垃圾收集并取消其实例变量的设置,因为它还包含对继承的静态变量的引用?