(PHP 5 >= 5.3.0, PHP 7)
Adds all objects from another storage
public void SplObjectStorage::addAll ( SplObjectStorage $storage )
Adds all objects-data pairs from a different storage in the current storage.
Parameters:
storage
The storage you want to import.
Returns:
No value is returned.
Examples:
SplObjectStorage::addAll() example
<?php $o = new StdClass; $a = new SplObjectStorage(); $a[$o] = "hello"; $b = new SplObjectStorage(); $b->addAll($a); echo $b[$o]."\n"; ?>
The above example will output something similar to:
hello
See also:
Please login to continue.