How to determine if $match is in $string?
$string = "Test String for the test";
$match = "test string";
How to d开发者_开发知识库etermine if $match is in $string?
You can use stripos
to find the position of $match
in $string
with a case-insensitive search:
$pos = stripos($string, $match);
Note to compare this with a type-safe comparison operator like ===
or !==
. Because if $match
is at the begin of $string
like in this case, stripos
returns 0
and (boolean) 0 === false
.
use strpos
to check if it is in the string. API Link
For case insensitive, use stripos
. API Link
Use stristr($haystack, $needle)
: http://php.net/manual/en/function.stristr.php
$boolean = stristr($string, $match);
精彩评论