(PHP 5, PHP 7)
DirectoryIterator::isExecutable — Determine if current DirectoryIterator item is executable
public DirectoryIterator::isExecutable ( ) : bool
Determines if the current DirectoryIterator item is executable.
This function has no parameters.
Returns true
if the entry is executable, otherwise false
Example #1 DirectoryIterator::isExecutable() example
This example lists files in the directory containing the script which are executable.
<?php $iterator = new DirectoryIterator(dirname(__FILE__)); foreach ($iterator as $fileinfo) { if ($fileinfo->isExecutable()) { echo $fileinfo->getFilename() . "\n"; } } ?>
The above example will output something similar to:
example.php myscript.sh
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/directoryiterator.isexecutable.php