Source Code:
(back to article)
<?php $file = '/path/to/file'; if (is_writeable($file)) { echo 'The file is writable'; } else { echo 'The file is not writable'; }
Result:
Report an issue