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);

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

ANSWER DOWNLOAD EXAMIANS APP