DirectoryIterator::isExecutable
(PHP 5, PHP 7, PHP 8)
DirectoryIterator::isExecutable — Determine if current DirectoryIterator item is executable
Beschreibung
Determines if the current DirectoryIterator item is executable.
Parameter-Liste
Diese Funktion besitzt keine Parameter.
Rückgabewerte
Returns true
if the entry is executable, otherwise false
Beispiele
Beispiel #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";
}
}
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
example.php myscript.sh
Siehe auch
- DirectoryIterator::isReadable() - Determine if current DirectoryIterator item can be read
- DirectoryIterator::isWritable() - Determine if current DirectoryIterator item can be written to
- DirectoryIterator::getPerms() - Get the permissions of current DirectoryIterator item