how to find a string has sub substring in php code example
Example: php string contains
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);