What will be the output of the following PHP code ?
<?php
function multi($num)
{
if ($num == 3)
echo "I Wonder";
if ($num == 7)
echo "Which One";
if ($num == 8)
echo "Is The";
if ($num == 19)
echo "Correct Answer";
}
$can = stripos("I love php, I love php too!","PHP");
multi($can);
?>
- I Wonder
- Which One
- Is The
- Correct Answer
(b).Which One
need an explanation for this answer? contact us directly to get an explanation for this answer