Fail to write to a file
<?php
if ($fd = @fopen("no_such_dir/text.txt", "w")) {
@fwrite($fd, "Something\n");
@fclose($fd);
print "done";
} else {
print "Failed";
}
?>
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
<?php
if ($fd = @fopen("no_such_dir/text.txt", "w")) {
@fwrite($fd, "Something\n");
@fclose($fd);
print "done";
} else {
print "Failed";
}
?>