Examveda
Examveda

What will be the output of the following PHP code ?
<?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

Solution(By Examveda Team)

The strstr() function searches for the first occurrence of a string inside another string.

This Question Belongs to PHP >> Functions

Join The Discussion

Related Questions on Functions