Consider:
$a = 'How are you?';
if ($a contains 'are')
echo 'true';
Suppose I have the code above, what is the correct way to write the statement if ($a contains 'are')?
containsphpstringstring-matchingsubstring
Consider:
$a = 'How are you?';
if ($a contains 'are')
echo 'true';
Suppose I have the code above, what is the correct way to write the statement if ($a contains 'are')?
Best Solution
You can use the
strpos()function which is used to find the occurrence of one string inside another one:Note that the use of
!== falseis deliberate (neither!= falsenor=== truewill return the desired result);strpos()returns either the offset at which the needle string begins in the haystack string, or the booleanfalseif the needle isn't found. Since 0 is a valid offset and 0 is "falsey", we can't use simpler constructs like!strpos($a, 'are').Now with PHP 8 you can do this using str_contains:
RFC