PHP Functions
What will be the output of the following PHP code ?
function email()
{
$email = ’contact@examians.com’;
$new = strstr($email, ‘@');
echo $new;
}
email();

contact
contact@examians.com
examians.com
@examians.com

ANSWER DOWNLOAD EXAMIANS APP