php check for character in string code example
Example 1: php find if substring is in string
$result = strpos("haystack", "needle");
if ($result != false)
{
// text found
}
Example 2: php check if string contains a char
$haystack = 'This is my haystack that we shall check'
$has_A = strpos($haystack, 'A') !== false;
$has_a = strpos($haystack, 'a') !== false;