find in str php

PHP
strpos ( string $haystack , mixed $needle [, int $offset = 0 ] ) : int$a = 'How are you?';

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

Also in PHP: