(PHP 5, PHP 7, PHP 8)
DirectoryIterator::next — Move forward to next DirectoryIterator item
This function has no parameters.
No value is returned.
Example #1 DirectoryIterator::next() example
List the contents of a directory using a while loop.
<?php
$iterator = new DirectoryIterator(dirname(__FILE__));
while($iterator->valid()) {
echo $iterator->getFilename() . "\n";
$iterator->next();
}
?>
The above example will output something similar to:
. .. apple.jpg banana.jpg index.php pear.jpg
Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!
Check out: eBank.nz (Art Generator) |
Netwrck.com (AI Tools) |
Text-Generator.io (AI API) |
BitBank.nz (Crypto AI) |
ReadingTime (Kids Reading) |
RewordGame |
BigMultiplayerChess |
WebFiddle |
How.nz |
Helix AI Assistant