Examveda
Examveda

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

A. 4

B. 5

C. 2

D. None of the mentioned

Answer: Option A

Solution(By Examveda Team)

Donkey starts from position 4 in string.

This Question Belongs to PHP >> Functions

Join The Discussion

Related Questions on Functions