SplFileInfo::isWritable

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

SplFileInfo::isWritableComprueba si se puede escribir en el fichero

Descripción

public SplFileInfo::isWritable(): bool

Comprueba si se puede escribir en el fichero actual.

Parámetros

Esta función no tiene parámetros.

Valores devueltos

Devuelve true si se puede escribir, en caso contrario false;

Ejemplos

Ejemplo #1 Ejemplo de SplFileInfo::isWriteable()

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

El resultado del ejemplo sería algo similar a:

locked.jpg is not writeable

add a note add a note

User Contributed Notes

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