PHP Functions
What will be the output of the following PHP code ?
function test($int)
{
if ($int == 1)
echo "This Works";
if ($int == 2)
echo "This Too Seems To Work";
}
test(1);
TEST(2);

ERROR
This Works
This Too Seems To Work
This WorksThis Too Seems To Work

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