downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

DirectoryIterator::isFile> <DirectoryIterator::isDot
[edit] Last updated: Fri, 30 Nov 2012

view this page in

DirectoryIterator::isExecutable

(PHP 5)

DirectoryIterator::isExecutableDetermine if current DirectoryIterator item is executable

Opis

public bool DirectoryIterator::isExecutable ( void )

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 DirectoryIterator::isExecutable - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites