check given string content specific word php

PHP
$a = 'How are you?';

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

if ($result != false)
{
  // text found
}
Source

Also in PHP: