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
I
You Do Not Talk About Pulp Fiction
You Do Not Talk About Fight Club

ANSWER DOWNLOAD EXAMIANS APP

PHP Functions
What will be the output of the following PHP code?
$title = "O'malley wins the heavyweight championship!";
echo ucwords($title);

O’malley Wins The Heavyweight Championship!
o’malley wins the heavyweight championship!
O’Malley Wins The Heavyweight Championship!
O’Malley wins the heavyweight championship!

ANSWER DOWNLOAD EXAMIANS APP