当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP DirectoryIterator rewind()用法及代码示例


DirectoryIterator::rewind()函数是PHP中的内置函数,用于将DirectoryIterator倒回起始位置。

用法:

void DirectoryIterator::rewind( void )

参数:该函数不接受任何参数。


返回值:该函数不返回任何值。

以下示例程序旨在说明PHP中的DirectoryIterator::rewind()函数:

示例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(); 
  
?>

输出:

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

示例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(); 
  
?>

输出:

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 => .

注意:此函数的输出取决于服务器文件夹的内容。

参考: https://www.php.net/manual/en/directoryiterator.rewind.php



相关用法


注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | DirectoryIterator rewind() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。