NoRewindIterator
PHP Manual

NoRewindIterator::rewind

(PHP 5 >= 5.1.0)

NoRewindIterator::rewindPrevents the rewind operation on the inner iterator.

説明

public void NoRewindIterator::rewind ( void )

Prevents the rewind operation on the inner iterator.

パラメータ

この関数にはパラメータはありません。

返り値

値を返しません。

例1 NoRewindIterator::rewind() example

This example demonstrates that calling rewind on a NoRewindIterator object has no effect.

<?php
$fruits 
= array("lemon""orange""apple""pear");

$noRewindIterator = new NoRewindIterator(new ArrayIterator($fruits));

echo 
$noRewindIterator->current() . "\n";
$noRewindIterator->next();
// now rewind the iterator (nothing should happen)
$noRewindIterator->rewind();
echo 
$noRewindIterator->current() . "\n";
?>

上の例の出力は以下となります。

lemon
orange


NoRewindIterator
PHP Manual