Answers for "search for string in string php"

PHP
1

php needle haystack

//Find the position of the first occurrence of a substring in a string
$mystring = 'abc';
$findme   = 'a';
$pos = strpos($mystring, $findme);
Posted by: Guest on May-08-2020

Browse Popular Code Answers by Language