PHP Functions
What will be the output of the following PHP code ?
function string()
{
echo strstr("Hello world!", 111);
}
string();

o world!
Hello world!
111
No Output

ANSWER DOWNLOAD EXAMIANS APP