strpos() function returns the numeric position of the first occurrence of a string.
Example :-
<?php
$string = ‘This is an example of string postion’;
echo strpos($string,’e');
?>
Output :-
11
This function returns the position of the string.
It will return first occurrence of the string from given string.
Spaces are also countable in the position & position starts from 0.
Filed under: php, String Functions, strpos()
