SplObjectStorage::addAll

(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:

SplObjectStorage::removeAll() -

doc_php
2016-02-24 16:19:32
Comments
Leave a Comment

Please login to continue.