DirectoryIterator::isExecutable

(PHP 5, PHP 7)

DirectoryIterator::isExecutableDetermine if current DirectoryIterator item is executable

Opis

public DirectoryIterator::isExecutable ( void ) : bool

Determines if the current DirectoryIterator item is executable.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

Returns TRUE if the entry is executable, otherwise FALSE

Przykłady

Przykład #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";
    }
}
?>

Powyższy przykład wyświetli coś podobnego do:

example.php
myscript.sh

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top