SplFileInfo::isWritable

Tells if the entry is writable

Description

public bool SplFileInfo::isWritable()

Checks if the current entry is writable.

Parameters

This function has no parameters.

Return Values

Returns true if writable, false otherwise;

Examples

Example #1 SplFileInfo::isWriteable example

<?php
$info = new SplFileInfo('locked.jpg');
if (!$info->isWriteable()) {
    echo $info->getFilename() . ' is not writeable';
}
?>

The above example will output something similar to:

locked.jpg is not writeable