PHP - La funzione is_writeable ()
La funzione is_writeable () può verificare se il file specificato è scrivibile. Questa funzione può restituire true se il file è scrivibile. È un alias della funzione is_writable ().
Sintassi
bool is_writeable ( string $filename )
Esempio
<?php
$file = "/PhpProject/php/phptest.txt";
if(is_writeable($file)) {
echo ("$file is writeable");
} else {
echo ("$file is not wrietable");
}
?>
Produzione
/PhpProject/php/phptest.txt is writeable