Discussion :: PHP - CS
-
What will be the output of the following PHP code?
<?php
echo stripos("I love php, I love php too!","PHP");
?>
Answer : Option B
Explanation :
The stripos() function finds the position of the first occurrence of a string inside another string.
Be The First To Comment