LimitIterator::getPosition

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

LimitIterator::getPositionReturn the current position

Beschreibung

public LimitIterator::getPosition(): int

Gets the current zero-based position of the inner Iterator.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

The current position.

Beispiele

Beispiel #1 LimitIterator::getPosition() example

<?php
$fruits
= array(
'a' => 'apple',
'b' => 'banana',
'c' => 'cherry',
'd' => 'damson',
'e' => 'elderberry'
);
$array_it = new ArrayIterator($fruits);
$limit_it = new LimitIterator($array_it, 2, 3);
foreach (
$limit_it as $item) {
echo
$limit_it->getPosition() . ' ' . $item . "\n";
}
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

2 cherry
3 damson
4 elderberry

Siehe auch

add a note

User Contributed Notes

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