What is the output of the following function call (assuming that foo.txt exists and contains text)?
<?php
$output = file("foo.txt");
An array where every entry is a line from the file foo.txt
Correct:
An array where every entry is a line from the file foo.txt