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

search for in the

LimitIterator::current> <LimitIterator
Last updated: Fri, 20 May 2011

view this page in

LimitIterator::__construct

(PHP 5 >= 5.1.0)

LimitIterator::__constructConstruct a LimitIterator

Descripción

LimitIterator::__construct ( Iterator $iterator [, int $offset = 0 [, int $count = -1 ]] )

Constructs a new LimitIterator from an iterator with a given starting offset and maximum count.

Parámetros

iterator

The Iterator to limit.

offset

Optional offset of the limit.

count

Optional count of the limit.

Valores devueltos

The new LimitIterator.

Errores/Excepciones

Throws an OutOfRangeException if the offset is less than 0 or the count is less than -1.

Ejemplos

Example #1 LimitIterator::__construct() example

<?php
$ait 
= new ArrayIterator(array('a''b''c''d''e'));
$lit = new LimitIterator($ait13);
foreach (
$lit as $value) {
    echo 
$value "\n";
}
?>

El resultado del ejemplo sería:

b
c
d

Ver también



add a note add a note User Contributed Notes LimitIterator::__construct
There are no user contributed notes for this page.

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