String includes() php

PHP
$a = 'How are you?';

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

Also in PHP: