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

No Output
Hello world!
o world!
111

ANSWER DOWNLOAD EXAMIANS APP