(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)
grapheme_strripos — 查找不区分大小写的字符串最后出现的(以 grapheme 为单位的)位置
过程式风格
查找不区分大小写的字符串最后出现的(以 grapheme 为单位的)位置
haystack
要查找的字符串。必须是有效的 UTF-8。
needle
要查找的字符串。必须是有效的 UTF-8。
offset
可选的 offset
参数允许您指定在 haystack
中以 grapheme 为单位的偏移量(而不是字节或字符)开始搜索的位置。返回的位置仍然相对于 haystack
的开头,而不管 offset
的值如何。
返回位置作为整数。如果未找到 needle
,grapheme_strripos() 将返回 false
。
示例 #1 grapheme_strripos() 示例
<?php
$char_a_ring_nfd = "a\xCC\x8A"; // 'LATIN SMALL LETTER A WITH RING ABOVE' (U+00E5) normalization form "D"
$char_o_diaeresis_nfd = "o\xCC\x88"; // 'LATIN SMALL LETTER O WITH DIAERESIS' (U+00F6) normalization form "D"
$char_O_diaeresis_nfd = "O\xCC\x88"; // 'LATIN CAPITAL LETTER O WITH DIAERESIS' (U+00D6) normalization form "D"
print grapheme_strripos( $char_a_ring_nfd . $char_o_diaeresis_nfd . $char_o_diaeresis_nfd, $char_O_diaeresis_nfd);
?>
上面的示例将输出
2