71. 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();
?>