is_writeable

Its an Alias of is_writable() and  checks whether  the filename is writable

Example

<?php

echo is_writeable(‘test.txt’)?”Yes”:”No”;

?>

Output

Yes