PHP Doku:: Construct a LimitIterator - limititerator.construct.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenStandard PHP Library (SPL)IteratorenThe LimitIterator classLimitIterator::__construct

Ein Service von Reinhard Neidl - Webprogrammierung.

The LimitIterator class

<<The LimitIterator class

LimitIterator::current>>

LimitIterator::__construct

(PHP 5 >= 5.1.0)

LimitIterator::__constructConstruct a LimitIterator

Beschreibung

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.

Parameter-Liste

iterator

The Iterator to limit.

offset

Optional offset of the limit.

count

Optional count of the limit.

Rückgabewerte

The new LimitIterator.

Fehler/Exceptions

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

Beispiele

Beispiel #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";
}
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

b
c
d


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)