CakeFest 2024: The Official CakePHP Conference

LimitIterator::__construct

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

LimitIterator::__constructConstruct a LimitIterator

Açıklama

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

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

Bağımsız Değişkenler

iterator

The Iterator to limit.

offset

Optional offset of the limit.

limit

Optional count of the limit.

Hatalar/İstisnalar

Throws a ValueError if the offset is less than 0 or the limit is less than -1.

Sürüm Bilgisi

Sürüm: Açıklama
8.0.0 Now throws a ValueError if offset is less than 0; previously it threw a RuntimeException.
8.0.0 Now throws a ValueError if limit is less than -1; previously it threw a RuntimeException.

Örnekler

Örnek 1 LimitIterator::__construct() example

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

Yukarıdaki örneğin çıktısı:

b
c
d

Ayrıca Bakınız

add a note

User Contributed Notes

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