?
What will be the output of the following PHP code ?
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);
?>
<?php
function movie($int)
{
$movies = array("Fight Club", "Kill Bill", "Pulp Fiction");
echo "You Do Not Talk About ". $movie[$integer];
}
movie(0);
?>
Answer & Solution
Correct Answer:
Option
A
Simple use of arrays.
Join the Discussion
Login to post a comment or share your explanation.
Login