PHP Functions
What will be the output of the following PHP code ?
function TV($string)
{
echo "my favourite TV show is ".$string;
function b()
{
echo " I am here to spoil this code";
}
}
a("Sherlock");
b();

Error
None of the mentioned
I am here to spoil this code
my favourite TV show is SherlockI am here ro spoil this code

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