PHP -Überprüfung, ob Zeichenfolge Word enthält
$myString = 'Hello Bob how are you?';
if (strpos($myString, 'Bob') !== false) {
echo "My string contains Bob";
}
Grepper