mb_strstr
(PHP 5 >= 5.2.0, PHP 7, PHP 8)
mb_strstr — 查找字符串在另一个字符串里的首次出现
说明
mb_strstr(
string
string
bool
?string
): string|false
string
$haystack
,string
$needle
,bool
$before_needle
= false
,?string
$encoding
= null
): string|false
mb_strstr() 查找了 needle
在 haystack
中首次的出现并返回 haystack
的一部分。
如果 needle
没有找到,它将返回 false
。
参数
返回值
返回 haystack
的一部分,或者 needle
没找到则返回 false
。
更新日志
版本 | 说明 |
---|---|
8.0.0 |
现在 needle 接受空字符串。
|
8.0.0 |
现在 encoding 可以为 null。
|
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。