downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

AppendIterator::__construct> <AppendIterator
[edit] Last updated: Fri, 24 May 2013

view this page in

AppendIterator::append

(PHP 5 >= 5.1.0)

AppendIterator::appendAppends an iterator

Description

public void AppendIterator::append ( Iterator $iterator )

Appends an iterator.

Parameters

iterator

The iterator to append.

Return Values

No value is returned.

Examples

Example #1 AppendIterator::append() example

<?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;
}
?>

The above example will output:

abcdef

See Also



add a note add a note User Contributed Notes AppendIterator::append - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites