how to check if one word matches another php code example

Example 1: How do I check if a string contains a specific word?

$a = 'Hello world?';

if (strpos($a, 'Hello') !== false) { //PAY ATTENTION TO !==, not !=
    echo 'true';
}
if (stripos($a, 'HELLO') !== false) { //Case insensitive
    echo 'true';
}

Example 2: php string contains

$mystring = 'abc';
$findme   = 'a';
$pos = strpos($mystring, $findme);

Example 3: if text contains word then in php

if (strpos($haystack,$needle) !== false) {
    echo "$haystack contains $needle";
}