find string in string in php

PHP
strpos ( string $haystack , mixed $needle [, int $offset = 0 ] ) : int//Find the position of the first occurrence of a substring in a string
$mystring = 'abc';
$findme   = 'a';
$pos = strpos($mystring, $findme);
Source

Also in PHP: