A classe LimitIterator

Introdução

...

Sinopse da classe

LimitIterator extends IteratorIterator implements OuterIterator , Traversable , Iterator {
/* Métodos */
public __construct ( Iterator $iterator , int $offset = 0 , int $limit = -1 )
public current ( ) : mixed
getPosition ( ) : int
public key ( ) : mixed
next ( ) : void
rewind ( ) : void
seek ( int $position ) : void
valid ( ) : bool
}

Exemplos

Exemplo #1 LimitIterator usage example

<?php

// Create an iterator to be limited
$fruits = new ArrayIterator(array(
    
'apple',
    
'banana',
    
'cherry',
    
'damson',
    
'elderberry'
));

// Loop over first three fruits only
foreach (new LimitIterator($fruits03) as $fruit) {
    
var_dump($fruit);
}

echo 
"\n";

// Loop from third fruit until the end
// Note: offset starts from zero for apple
foreach (new LimitIterator($fruits2) as $fruit) {
    
var_dump($fruit);
}

?>

O exemplo acima irá imprimir:

string(5) "apple"
string(6) "banana"
string(6) "cherry"

string(6) "cherry"
string(6) "damson"
string(10) "elderberry"

Índice

add a note add a note

User Contributed Notes

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