PHP check if a string contains ...
$a = 'How are you?'; if (strpos($a, 'are') !== false) { echo 'true'; }