mb_strpos函数用于在字符串中查找特定子字符串的位置,与strpos函数类似,但支持多字节字符。使用方法如下:
string mb_strpos ( string $haystack , string $needle [, int $offset = 0 [, string $encoding = mb_internal_encoding() ]] )
参数说明:
示例:
$string = 'Hello, 你好!';
$pos = mb_strpos($string, '你好');
echo $pos; // 输出 7
以上示例中,mb_strpos函数在$string字符串中查找’你好’子字符串的位置,并返回位置索引值。