Quantcast
Channel: Milap Patel » String Functions
Viewing all articles
Browse latest Browse all 5

strpos() – Find position of first occurrence of a string

$
0
0

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()

Viewing all articles
Browse latest Browse all 5

Trending Articles