(PHP 5 >= 5.3.0)
SplObjectStorage::removeAll — 別のストレージに含まれているオブジェクトを現在のストレージから取り除く
別のストレージに含まれているオブジェクトを現在のストレージから取り除きます。
取り除きたい要素を含むストレージ。
値を返しません。
例1 SplObjectStorage::removeAll() の例
<?php
$o1 = new StdClass;
$o2 = new StdClass;
$a = new SplObjectStorage();
$a[$o1] = "foo";
$b = new SplObjectStorage();
$b[$o1] = "bar";
$b[$o2] = "gee";
var_dump(count($b));
$b->removeAll($a);
var_dump(count($b));
?>
上の例の出力は、 たとえば以下のようになります。
int(2) int(1)