PHP 8.3.4 Released!

SplFileInfo::isWritable

(PHP 5 >= 5.1.2, PHP 7, PHP 8)

SplFileInfo::isWritableTells if the entry is writable

Description

public SplFileInfo::isWritable(): bool

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

add a note

User Contributed Notes

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