php string contains www .com code example
Example 1: if part of stringp ph
$a = 'How are you?';
if (strpos($a, 'are') !== false) {
echo 'true';
}
Example 2: strpos
strpos ( string $haystack , mixed $needle [, int $offset = 0 ] ) : int
$a = 'How are you?';
if (strpos($a, 'are') !== false) {
echo 'true';
}
strpos ( string $haystack , mixed $needle [, int $offset = 0 ] ) : int