DirectoryIterator::isExecutable

(PHP 5)

DirectoryIterator::isExecutableDetermine if current DirectoryIterator item is executable

Опис

public bool DirectoryIterator::isExecutable ( void )

Determines if the current DirectoryIterator item is executable.

Параметри

В цієї функції немає параметрів.

Значення, що повертаються

Returns TRUE if the entry is executable, otherwise FALSE

Приклади

Приклад #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";
    }
}
?>

Наведений вище приклад виведе щось подібне до:

example.php
myscript.sh

Прогляньте Також

add a note add a note

User Contributed Notes

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