CakeFest 2024: The Official CakePHP Conference

SplFileInfo::isWritable

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

SplFileInfo::isWritableTells if the entry is writable

Descrizione

public SplFileInfo::isWritable(): bool

Checks if the current entry is writable.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Returns true if writable, false otherwise;

Esempi

Example #1 SplFileInfo::isWriteable() example

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

Il precedente esempio visualizzerà qualcosa simile a:

locked.jpg is not writeable

add a note

User Contributed Notes

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