多字节字符串 函数
在线手册:中文  英文

mb_strstr

(PHP 5 >= 5.2.0)

mb_strstr查找字符串在另一个字符串里的首次出现

说明

string mb_strstr ( string $haystack , string $needle [, bool $before_needle = false [, string $encoding ]] )

mb_strstr() 查找了 needlehaystack 中首次的出现并返回 haystack 的一部分。 如果 needle 没有找到,它将返回 FALSE

参数

haystack

要获取 needle 首次出现的字符串。

needle

haystack 中查找这个字符串。

before_needle

决定这个函数返回 haystack 的哪一部分。 如果设置为 TRUE,它返回 haystack 中从开始到 needle 出现位置的所有字符(不包括 needle)。 如果设置为 FALSE,它返回 haystackneedle 出现位置到最后的所有字符(包括了 needle)。

encoding

要使用的字符编码名称。 如果省略该参数,将使用内部字符编码。

返回值

返回 haystack 的一部分,或者 needle 没找到则返回 FALSE

参见


多字节字符串 函数
在线手册:中文  英文

用户评论:

John from http://fullof.bs/ (2009-07-16 09:49:45)

To clarify, if $part is true, the string returned is from index zero up to, but not including, the first character of the matched substring.

<?php echo mb_strstr('abCDef','CD'true); // prints 'ab' ?>

易百教程