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的大小写与实际字符串不一致,仍然能够找到对应的子字符串。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: php自定义函数的方法有哪些