contains() or includes() in php code example
Example 1: php check if string contains word
$myString = 'Hello Bob how are you?';
if (strpos($myString, 'Bob') !== false) {
echo "My string contains Bob";
}
Example 2: str_includes php
<?php
$string = 'The lazy fox jumped over the fence';
if (str_contains($string, '')) {
echo "Checking the existence of an empty string will always return true";
}
if (str_contains($string, 'lazy')) {
echo "The string 'lazy' was found in the string\n";
}
if (str_contains($string, 'Lazy')) {
echo 'The string "Lazy" was found in the string';
} else {
echo '"Lazy" was not found because the case does not match';
}
Example 3: php string contains
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);
Example 4: contains php
if (strpos($a, 'are') !== false) {
echo 'true';
}
Example 5: string contains php
$a = 'How are you?';
if (strpos($a, 'are') !== false) {
echo 'true';
}