PHP | Función ArrayIterator rewind()

La función ArrayIterator::rewind() es una función incorporada en PHP que se usa para rebobinar la array hasta el principio.

Sintaxis:

void ArrayIterator::rewind( void )

Parámetros: Esta función no acepta ningún parámetro.

Valor devuelto: esta función no devuelve ningún valor.

Los siguientes programas ilustran la función ArrayIterator::rewind() en PHP:

Programa 1:

<?php
  
// Declare an ArrayIterator
$arrItr = new ArrayIterator(
    array(
        "a" => 4,
        "b" => 2,
        "g" => 8,
        "d" => 6,
        "e" => 1,
        "f" => 9
    )
);
  
// Move to last position
$arrItr->seek(5);
  
// Display the next value
var_dump($arrItr->next());
  
// Move to start position
$arrItr->rewind();
  
// Display the current element
echo $arrItr->current();
  
?>
Producción:

NULL
4

Programa 2:

<?php
     
// Declare an ArrayIterator
$arrItr = new ArrayIterator(
    array(
        "b" => "for",
        "a" => "Geeks",
        "e" => "Science",
        "c" => "Geeks",
        "f" => "Portal",
        "d" => "Computer"
    )
);
    
// Check the validity of ArrayIterator
while($arrItr->valid()) {
    $arrItr->next();
}
  
// Move to start position
$arrItr->rewind();
  
// Display the current element
echo $arrItr->current();
  
?>
Producción:

for

Referencia: https://www.php.net/manual/en/arrayiterator.rewind.php

Publicación traducida automáticamente

Artículo escrito por jit_t y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *