ArrayIterator::rewind

(PHP 5, PHP 7, PHP 8)

ArrayIterator::rewindRecoloca o array no início

Descrição

public ArrayIterator::rewind(): void

Esta função recoloca o iterador no início do array.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Nenhum valor é retornado.

Exemplos

Exemplo #1 Exemplo de ArrayIterator::rewind()

<?php
$arrayobject
= new ArrayObject();

$arrayobject[] = 'zero';
$arrayobject[] = 'um';
$arrayobject[] = 'dois';

$iterator = $arrayobject->getIterator();

$iterator->next();
echo
$iterator->key(); //1

$iterator->rewind(); //retornando ao início
echo $iterator->key(); //0
?>

add a note add a note

User Contributed Notes

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