strpos hpp code example
Example 1: php string contains
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);
Example 2: strpos php
if(strpos('abc', 'a') !== false) { // ...
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);
if(strpos('abc', 'a') !== false) { // ...