find a specific word in a string and add another string after that specific word php

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

Also in PHP: