InfiniteIterator::__construct

(PHP 5 >= 5.1.0)

InfiniteIterator::__constructConstructs an InfiniteIterator

Beskrivelse

public InfiniteIterator::__construct ( Iterator $iterator )

Constructs an InfiniteIterator from an Iterator.

Parametre

iterator

The iterator to infinitely iterate over.

Returnerings Værdier

No value is returned.

Fejl/Undtagelser

Throws an E_RECOVERABLE_ERROR if the iterator parameter is not an Iterator.

Eksempler

Eksempel #1 InfiniteIterator::__construct() example

<?php
$arrayit  
= new ArrayIterator(array('cat','dog'));
$infinite = new InfiniteIterator($arrayit);
$limit    = new LimitIterator($infinite07);
foreach(
$limit as $value)
{
    echo 
"$value\n";
}
?>

The above example will output:

cat
dog
cat
dog
cat
dog
cat

Se også

add a note add a note

User Contributed Notes

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