(PHP 5, PHP 7)
DirectoryIterator::isFile — Determine if current DirectoryIterator item is a regular file
public DirectoryIterator::isFile ( ) : bool
Determines if the current DirectoryIterator item is a regular file.
This function has no parameters.
Returns true
if the file exists and is a regular file (not a link
or dir
), otherwise false
Example #1 DirectoryIterator::isFile() example
This example will list all regular files in the directory containing the script.
<?php $iterator = new DirectoryIterator(dirname(__FILE__)); foreach ($iterator as $fileinfo) { if ($fileinfo->isFile()) { echo $fileinfo->getFilename() . "\n"; } } ?>
The above example will output something similar to:
apple.jpg banana.jpg example.php pears.jpg
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/directoryiterator.isfile.php