CONTAIN PHP

PHP
$result = strpos("haystack", "needle");

if ($result != false)
{
  // text found
}$mystring = 'abc';
$findme   = 'a';
$pos = strpos($mystring, $findme);
Source

Also in PHP: