DirectoryIterator::isWritable

(PHP 5)

DirectoryIterator::isWritableDetermine if current DirectoryIterator item can be written to

Опис

public bool DirectoryIterator::isWritable ( void )

Determines if the current DirectoryIterator item is writable.

Параметри

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

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

Returns TRUE if the file/directory is writable, otherwise FALSE

Приклади

Приклад #1 DirectoryIterator::isWritable() example

This example lists the files and directories which can be opened for writing in the directory containing the script.

<?php
$iterator 
= new DirectoryIterator(dirname(__FILE__));
foreach (
$iterator as $fileinfo) {
    if (
$fileinfo->isWritable()) {
        echo 
$fileinfo->getFilename() . "\n";
    }
}
?>

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

apples.txt
bananas.html
pears

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

add a note add a note

User Contributed Notes

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