PHP中,可以使用字符串函数strstr()
来在字符串中查找指定字符串,并返回该字符串之后的部分。
函数语法如下:
strstr(string $haystack, mixed $needle, bool $before_needle = false): string|false
参数说明:
$haystack
:要在其中查找的字符串。$needle
:要查找的字符串。$before_needle
(可选):如果设置为true
,则返回指定字符串之前的部分。返回值:
false
。示例代码:
$str = "Hello, world!";
$substring = strstr($str, "world");
echo $substring; // 输出:world!
在上述示例中,strstr()
函数在字符串$str
中查找字符串"world"
,并返回该字符串之后的部分,即"world!"
。
推荐的腾讯云相关产品:无
参考链接:
领取专属 10元无门槛券
手把手带您无忧上云