AppendIterator::append
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
AppendIterator::append — イテレータを追加する
パラメータ
iterator
-
追加するイテレータ。
戻り値
値を返しません。
例
例1 AppendIterator::append() の例
<?php
$array_a = new ArrayIterator(array('a', 'b', 'c'));
$array_b = new ArrayIterator(array('d', 'e', 'f'));
$iterator = new AppendIterator;
$iterator->append($array_a);
$iterator->append($array_b);
foreach ($iterator as $current) {
echo $current;
}
?>
上の例の出力は以下となります。
abcdef
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google