detect keyword of php string code example
Example 1: php chech if string contains
$a = 'How are you?';
if (strpos($a, 'are') !== false) {
echo 'true';
}
Example 2: php string contains
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);