PHP Conference Japan 2024

grapheme_strstr

(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)

grapheme_strstr返回从 haystack 字符串中 needle 首次出现的位置到 haystack 末尾的部分字符串

描述

过程式风格

grapheme_strstr(string $haystack, string $needle, bool $beforeNeedle = false): string|false

返回从 haystack 字符串中 needle 首次出现的位置到 haystack 末尾的部分字符串(包括 needle)。

参数

haystack

输入字符串。必须是有效的 UTF-8。

needle

要查找的字符串。必须是有效的 UTF-8。

beforeNeedle

如果为 truegrapheme_strstr() 返回 haystackneedle 首次出现之前的部分(不包括 needle)。

返回值

返回 haystack 的一部分,如果找不到 needle 则返回 false

范例

示例 #1 grapheme_strstr() 例子

<?php

$char_a_ring_nfd
= "a\xCC\x8A"; // 'LATIN SMALL LETTER A WITH RING ABOVE' (U+00E5) 规范化形式 "D"
$char_o_diaeresis_nfd = "o\xCC\x88"; // 'LATIN SMALL LETTER O WITH DIAERESIS' (U+00F6) 规范化形式 "D"

print urlencode(grapheme_stristr( $char_a_ring_nfd . $char_o_diaeresis_nfd . $char_a_ring_nfd, $char_o_diaeresis_nfd));

?>

以上示例将输出

o%CC%88a%CC%8A

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top