Discussion :: PHP - CS
-
What will be the output of the following PHP code?
<?php
function do($myString)
{
echo strpos($myString, "donkey",0);
}
do("The donkey looks like a horse.");
?>
Answer : Option A
Explanation :
Donkey starts from position 4 in string.
Be The First To Comment