PHP - File Handling
What will this PHP code output?
$file = fopen('log.txt', 'a');
fwrite($file, "Test\n");
fclose($file);
echo filesize('log.txt');$file = fopen('log.txt', 'a');
fwrite($file, "Test\n");
fclose($file);
echo filesize('log.txt');15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions