What will be the output of the following PHP code ?
<?php
function movie($int)
{
$movies = array("Fight Club", "Kill Bill", "Pulp Fiction");
echo "You Do Not Talk About ". $movie[$integer];
}
movie(0);
?>
- You Do Not Talk About Fight Club
- You Do Not Talk About Kill Bill
- You Do Not Talk About Pulp Fiction
- None of the mentioned
(a).You Do Not Talk About Fight Club
need an explanation for this answer? contact us directly to get an explanation for this answer