php – SplObjectStorage是否会在对象仍然附着时破坏内存泄漏引用?

如果SplObjectStorage实例在仍然附加某些对象的情况下析构,它是否先隐式分离对象,还是由SplObjectStorage对这些悬空对象的引用导致内存泄漏?我正在尝试确定用户代码是否“分离在破坏之前留下的任何东西”是必要的,以防止这样的内存泄漏.

$storage = new SplObjectStorage();
$x = new stdClass();
$y = new stdClass();
$storage->attach($x);
$storage->attach($y);
$storage = null; 
// did not explicitly detach $x and $y... does $storage's destruction do it?
// or do the zval counts on $x and $y Now off by one?
$x = null;
$y = null;
// at this point, are there two dangling references to $x and $y,
// simply because $storage did not dereference from them before destroying itself?

解决方法:

简单的答案是:它应该释放这两个对象.

如果不是这种情况,则应将其视为错误.

测试:使用析构函数创建一个类,并确保调用它.

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...