PHP Functions
What will be the output of the following PHP code ?
function movie($int)
{
$movies = array("Fight Club", "Kill Bill", "Pulp Fiction");
echo "You Do Not Talk About ". $movie[$integer];
}
movie(0);

None of the mentioned
You Do Not Talk About Pulp Fiction
I
You Do Not Talk About Fight Club

ANSWER DOWNLOAD EXAMIANS APP