check text is in string or not php

PHP
$myString = 'Hello Bob how are you?';
if (strpos($myString, 'Bob') !== false) {
    echo "My string contains Bob";
}$mystring = 'abc';
$findme   = 'a';
$pos = strpos($mystring, $findme);
Source

Also in PHP: