I get ? inside the string for some character in php code example
Example 1: if part of stringp ph
$a = 'How are you?';
if (strpos($a, 'are') !== false) {
echo 'true';
}
Example 2: php get first character of string
$firstStringCharacter = substr("hello", 0, 1);