Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

php needle haystack

//Find the position of the first occurrence of a substring in a string
$mystring = 'abc';
$findme   = 'a';
$pos = strpos($mystring, $findme);
 
PREVIOUS NEXT
Tagged: #php #needle #haystack
ADD COMMENT
Topic
Name
8+9 =