Deprecated: Optional parameter $keys declared before required parameter $cms_id is implicitly treated as a required parameter in /home/www/dev/work/class/blog/CmsKey.php on line 75

Deprecated: Creation of dynamic property lvesu\lvesu\controller\blog\php::$title is deprecated in /home/www/dev/work/website/lvesu/class/controller/blog/php.php on line 28

Deprecated: Creation of dynamic property lvesu\lvesu\controller\blog\php::$outlink is deprecated in /home/www/dev/work/website/lvesu/template/blog/cms/php.manual.tpl on line 2

Deprecated: Creation of dynamic property lvesu\lvesu\controller\blog\php::$status is deprecated in /home/www/dev/work/website/lvesu/template/blog/index.head.php on line 2
PHP - Manual: NoRewindIterator - 互联网笔记

略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: NoRewindIterator

2025-04-27

The NoRewindIterator class

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

简介

This iterator ignores rewind operations. This allows processing an iterator in multiple partial foreach loops.

类摘要

class NoRewindIterator extends IteratorIterator {
/* 方法 */
public __construct(Iterator $iterator)
public current(): mixed
public key(): mixed
public next(): void
public rewind(): void
public valid(): bool
/* 继承的方法 */
}

目录

添加备注

用户贡献的备注 1 note

up
7
Anonymous
4 years ago
As its name implies, NoRewindIterator doesn't invoke the "rewind" method when It reaches the end of the iterator.

Let's demonstrate it by two examles.

In this example the "rewind" method will be invoked after when the "foreache" reaches its end, so, we can repeat printing the same values as many times as we want:

<?PHP
$iterator
= new ArrayIterator(['PHP', 'Python', 'Go']);

foreach (
$iterator as $item) {
echo
$item.PHP_EOL;
}

foreach (
$iterator as $item) {
echo
$item.PHP_EOL;
}
?>

By using the NoRewindIterator, the "rewind" won't be invoked, so, we can't do as we did in previous example:

<?PHP
$iterator
= new ArrayIterator(['PHP', 'Python', 'Go']);
$iterator = new NoRewindIterator($iterator);

foreach (
$iterator as $item) {
echo
$item.PHP_EOL;
}

// doesn't do anything
foreach ($iterator as $item) {
echo
$item.PHP_EOL;
}

?>

官方地址:https://www.php.net/manual/en/class.norewinditerator.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3