stristr函數是PHP中用來查找字符串中第一次出現的子字符串(不區分大小寫)的函數。其語法為:
stristr(string $haystack , string $needle , bool $before_needle = false): ?string
參數說明:
示例:
$string = 'Hello, World!';
$substring = 'world';
$result = stristr($string, $substring);
echo $result; // 輸出: World!
在上面的示例中,由于stristr函數對大小寫不敏感,所以即使$substring的大小寫與實際字符串不一致,仍然能夠找到對應的子字符串。