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