FilesystemIterator::next()函数是PHP中的内置函数,用于移至下一个文件元素。
用法:
void FilesystemIterator::next( void )
参数:该函数不接受任何参数。
返回值:该函数不返回任何值。
以下示例程序旨在说明PHP中的FilesystemIterator::next()函数:
示例1:
<?php
// Create new file system iterator
$fileItr = new FilesystemIterator(dirname(__FILE__));
// Check for validity of file iterator
while ($fileItr->valid()) {
// Check for directory
if ($fileItr->isDir()) {
// Display the filename
echo $fileItr->getFilename() . "<br>";
}
// Move to the next element
$fileItr->next();
}
?>
输出:
dashboard img webalizer xampp
示例2:
<?php
// Create new file system iterator
$fileItr = new FilesystemIterator(dirname(__FILE__),
FilesystemIterator::KEY_AS_FILENAME);
// Loop runs while file iterator is valid
while ($fileItr->valid()) {
// Check if file iterator is not directory
if (!$fileItr->isDir()) {
// Display the key element
echo $fileItr->key() . "<br>";
}
// Move to the next element
$fileItr->next();
}
?>
输出:
applications.html bitnami.css favicon.ico geeks.PNG gfg.php index.php Sublime Text Build 3211 x64 Setup.exe
注意:此函数的输出取决于服务器文件夹的内容。
参考: https://www.php.net/manual/en/filesystemiterator.next.php
相关用法
- PHP FilesystemIterator key()用法及代码示例
- PHP FilesystemIterator current()用法及代码示例
- PHP FilesystemIterator setFlags()用法及代码示例
- PHP FilesystemIterator rewind()用法及代码示例
- PHP FilesystemIterator getFlags()用法及代码示例
- PHP FilesystemIterator __construct()用法及代码示例
- p5.js red()用法及代码示例
- p5.js pow()用法及代码示例
- p5.js log()用法及代码示例
- PHP key()用法及代码示例
- p5.js cos()用法及代码示例
- p5.js sin()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | FilesystemIterator next() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。