DirectoryIterator::isWritable

(PHP 5, PHP 7)

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

说明

public DirectoryIterator::isWritable ( void ) : bool

Determines if the current DirectoryIterator item is writable.

参数

此函数没有参数。

返回值

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

范例

Example #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

参见

相关文章
php directoryiterator get inode for the current directoryiterator itemphp directoryiterator get last modification time of current directoryiterator itemphp directoryiterator get owner of current directoryiterator itemphp directoryiterator get path of current iterator item without filenamephp directoryiterator return path and file name of current directoryiterator itemphp directoryiterator get the permissions of current directoryiterator itemphp directoryiterator get size of current directoryiterator itemphp directoryiterator determine the type of the current directoryiterator itemphp directoryiterator determine if current directoryiterator item is a directoryphp directoryiterator determine if current directoryiterator item is . or .. php directoryiterator determine if current directoryiterator item is executablephp directoryiterator determine if current directoryiterator item is a regular filephp directoryiterator determine if current directoryiterator item is a symbolic linkphp directoryiterator determine if current directoryiterator item can be readphp directoryiterator determine if current directoryiterator item can be written tophp ncurses 函数 checks if terminal color definitions can be changedphp imagick checks if the current item is validphp recursiveiterator returns if an iterator can be created for the current entryphp recursiveregexiterator returns whether an iterator can be obtained for the current entryphp zookeeper checks if the current zookeeper connection state can be recovered
关注编程学问公众号