LimitIterator::__construct

(PHP 5 >= 5.1.0, PHP 7, PHP 8)

LimitIterator::__constructConstruye un LimitIterator

Descripción

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

Construye un nuevo LimitIterator de un iterator con un determinado inicio offset y un máximo count.

Parámetros

iterator

El Iterator a limitar.

offset

Índice opcional de el límite.

count

Cuenta opcional de el límite.

Valores devueltos

El nuevo LimitIterator.

Errores/Excepciones

Lanza una OutOfRangeException si el offset es menor que 0 o el count es menor que -1.

Ejemplos

Ejemplo #1 Ejemplo de LimitIterator::__construct()

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

El resultado del ejemplo sería:

b
c
d

add a note add a note

User Contributed Notes

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