1.

What will be the output of the following PHP code ?
<?php
function fun()
{
$EmailId1 = "Interview@Mania.com";
$EmailId2 = strstr($EmailId1, '@');
echo $EmailId2;
}
fun();
?>

A. Interview@Mania.com
B. Error
C. Nothing
D. @Mania.com
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs