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