php check write permission folder

<?php
$filename = 'test.txt';
if (is_writable($filename)) {
    echo 'The file is writable';
} else {
    echo 'The file is not writable';
}
?>

Leave a Reply

Your email address will not be published. Required fields are marked *