PHP - File Handling
What will be the output of this PHP code?
$file = fopen("test.txt", "w");
fwrite($file, "Hello");
fclose($file);
$file = fopen("test.txt", "a");
fwrite($file, " World");
fclose($file);
$content = file_get_contents("test.txt");
echo $content;