Discussion :: PHP - CS
-
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);
?>
Answer : Option B
Explanation :
Argument is 0.
Be The First To Comment