Better way (imho) is to call:
$storage->removeAll($storage);
Especially, that sometimes (had no time to investigate) removeAllExcept(new SplObjectStorage()) leaves some elements.
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplObjectStorage::attach — オブジェクトをストレージに追加する
オブジェクトをストレージに追加し、 オプションでそれを何らかのデータに関連づけます。
値を返しません。
例1 SplObjectStorage::attach() の例
<?php
$o1 = new stdClass;
$o2 = new stdClass;
$s = new SplObjectStorage();
$s->attach($o1); // $s[$o1] = NULL; と同等
$s->attach($o2, "hello"); // $s[$o2] = "hello"; と同等
var_dump($s[$o1]);
var_dump($s[$o2]);
?>
上の例の出力は、 たとえば以下のようになります。
NULL string(5) "hello"
Better way (imho) is to call:
$storage->removeAll($storage);
Especially, that sometimes (had no time to investigate) removeAllExcept(new SplObjectStorage()) leaves some elements.