Mega Code Archive

 
Categories / Php / File Directory
 

Testing for write permission

$log_file = '/var/log/users.log'; if (is_writeable($log_file)) {     $fh = fopen($log_file,'ab');     fwrite($fh, $_SESSION['username'] . ' at ' . strftime('%c') . "\n");     fclose($fh); } else {     print "Can't write to log file."; }