who to find string in string using php code example
Example 1: find in php string or
$a = 'How are you?';
if (strpos($a, 'are') !== false) {
echo 'true';
}
Example 2: php find string in string
$pos = strpos("find the position of X in here", "X");