Question:What is the output of the following code snippet?$email="jahid@yahoo.com"; $a = strstr($email, '@', true); $b=strstr($email, '@'); echo $a.'@'.$b;
$email="jahid@yahoo.com"; $a = strstr($email, '@', true); $b=strstr($email, '@'); echo $a.'@'.$b;
A jahid@yahoo.com B jahid@@yahoo.com C yahoo.com@jahid D yahoo.comjahid
+ AnswerB
+ Report