php tewxt ocntains code example
Example 1: if part of stringp ph
$a = 'How are you?';
if (strpos($a, 'are') !== false) {
echo 'true';
}
Example 2: php string contains
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);
$a = 'How are you?';
if (strpos($a, 'are') !== false) {
echo 'true';
}
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);