?
What will be the output of the following PHP code ?
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();
?>
Answer & Solution
Correct Answer:
Option
A
111 is the ASCII value of o.
Join the Discussion
Login to post a comment or share your explanation.
Login