A função is_writeable () pode verificar se o arquivo especificado é gravável. Esta função pode retornar true se o arquivo for gravável. É um alias da função is_writable ().
Sintaxe
bool is_writeable ( string $filename )
Exemplo
<?php
$file = "/PhpProject/php/phptest.txt";
if(is_writeable($file)) {
echo ("$file is writeable");
} else {
echo ("$file is not wrietable");
}
?>
Resultado
/PhpProject/php/phptest.txt is writeable