find a word in srting php

PHP
$a = 'How are you?';

if (strpos($a, 'are') !== false) {
    echo 'true';
}
Source

Also in PHP: