PHP | Función de rebobinado() de DirectoryIterator

La función DirectoryIterator::rewind() es una función incorporada en PHP que se usa para rebobinar DirectoryIterator a la posición de inicio.

Sintaxis:

void DirectoryIterator::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 DirectoryIterator::rewind() en PHP:

Programa 1:

<?php
  
// Create a directory Iterator
$directory = new DirectoryIterator(dirname(__FILE__));
  
// Loop runs while directory is valid
while ($directory->valid()) {
      
    // Check the element is directory
    if($directory->isDir()) {
  
        // Display the key and file name
        echo $directory->key() . " => " . 
        $directory->getFilename() . "<br>";
    }
  
    // Move to the next element
    $directory->next();
}
  
// Use rewind() function to move to
// the start position
$directory->rewind();
  
// Display the key and file name
echo $directory->key() . " => " . 
        $directory->getFilename();
  
?>

Producción:

0 => .
1 => ..
4 => dashboard
8 => img
11 => webalizer
12 => xampp
0 => .

Programa 2:

<?php
  
// Create a directory Iterator
$directory = new DirectoryIterator(dirname(__FILE__));
  
// Loop runs for each element of directory
foreach($directory as $dir) {
  
    // Display key and file name
    echo $dir->key() . " => " . 
    $dir->getFilename() . "<br>";
}
  
// Use rewind() function to move to
// the start position
$directory->rewind();
  
// Display key and file name
echo $directory->key() . " => " . 
        $directory->getFilename();
  
?>

Producción:

0 => .
1 => ..
2 => applications.html
3 => bitnami.css
4 => dashboard
5 => favicon.ico
6 => geeks.PNG
7 => gfg.php
8 => img
9 => index.php
10 => Sublime Text Build 3211 x64 Setup.exe
11 => webalizer
12 => xampp
0 => .

Nota: El resultado de esta función depende del contenido de la carpeta del servidor.

Referencia: https://www.php.net/manual/en/directoryiterator.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 *