?
What will be the output of the following PHP code ?
What will be the output of the following PHP code ?
<?php
function mine($m)
{
if ($m < 0)
echo "less than 0";
if ($ >= 0)
echo "Not True";
}
mine(0);
?>
<?php
function mine($m)
{
if ($m < 0)
echo "less than 0";
if ($ >= 0)
echo "Not True";
}
mine(0);
?>
Answer & Solution
Correct Answer:
Option
B
Argument is 0.
Join the Discussion
Login to post a comment or share your explanation.
Login