check char inside string php

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

if ($result != false)
{
  // text found
}$a = 'How are you?';

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

Also in PHP: