1.

What will be the output of the following PHP code?
<?php
function fun($Str)
{
echo strpos($Str, "good",0);
}
fun("The Interview Mania is good for study.");
?>

A. good
B. Error
C. 23
D. Nothing
E. None of these
Answer» D. Nothing


Discussion

No Comment Found

Related MCQs