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

111
o world!
No Output
Hello world!

ANSWER DOWNLOAD EXAMIANS APP