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
1
2
3
4
5
6
7
8
9
<?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
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.