If substring exist in a string
From https://stackoverflow.com/questions/4366730/how-do-i-check-if-a-string-contains-a-specific-word
$a = 'How are you?'; if (strpos($a, 'are') !== false) { echo 'true'; }