What will be the output of the following PHP code ?
<?php
function email()
{
$email = ’contact@examveda.com’;
$new = strstr($email, ‘@');
echo $new;
}
email();
?>
<?php
function email()
{
$email = ’contact@examveda.com’;
$new = strstr($email, ‘@');
echo $new;
}
email();
?>A. contact
B. contact@examveda.com
C. @examveda.com
D. examveda.com
Answer: Option C

Join The Discussion