SplObjectStorage::addAll

(PHP 5 >= 5.3.0)

SplObjectStorage::addAllAdds all objects from another storage

說明

public void SplObjectStorage::addAll ( SplObjectStorage $storage )

Adds all objects-data pairs from a different storage in the current storage.

參數

storage

The storage you want to import.

回傳值

無回傳值。

範例

Example #1 SplObjectStorage::addAll() example

<?php
$o 
= new StdClass;
$a = new SplObjectStorage();
$a[$o] = "hello";

$b = new SplObjectStorage();
$b->addAll($a);
echo 
$b[$o]."\n";
?>

上例的輸出類似於:

hello

參見

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top