ExamVeda
Login
Home
This question belongs to PHP Functions
Functions
?

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

Answer & Solution
Correct Answer: Option C
Function Is case Insensitive.
Examveda
Question posted by Examveda
Community

Join the Discussion

No comments yet Be the first to discuss this question.