Use strpos function in php to find specific text within string

Search given text within string variable using strpos() string function in php.

Strpos() method is used to search specific text within the given string variable and if this function finds the given character or string then it will return the characters position in numeric form. So here is the complete step by step tutorial for Use strpos function in php to find specific text within string.

android-project-download-code-button

How to Use strpos function in php to find specific text within string.

Code for strpos_function.php file.

 <?php

//Main string .
$WebsiteName = "Android-Examples.com";

//printing E index value on screen.
echo strpos($WebsiteName, "E");


?>

Screenshot:

Use strpos function in php to find specific text within string

Click here to download Use strpos function in php to find specific text within string project with source code.