What will be the output of the following PHP code ?
<?php
function string()
{
echo strstr("Hello world!", 111);
}
string();
?>
<?php
function string()
{
echo strstr("Hello world!", 111);
}
string();
?>
A. o world!
B. Hello world!
C. 111
D. No Output
Answer: Option A
Join The Discussion