grapheme_stristr

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

grapheme_stristr返回从 haystack 字符串中第一个出现不区分大小写的 needle 的位置到 haystack 末尾的部分

描述

过程式风格

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

返回从 haystack 字符串中第一个出现不区分大小写的 needle 的位置开始,包括该位置,到 haystack 末尾的部分。

参数

haystack

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

needle

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

beforeNeedle

如果为 truegrapheme_stristr() 返回 haystack 中第一个出现 needle 之前(不包括 needle)的部分。

返回值

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

示例

示例 #1 grapheme_stristr() 示例

<?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"
$char_O_diaeresis_nfd = "O\xCC\x88"; // 'LATIN CAPITAL LETTER O WITH DIAERESIS' (U+00D6) 规范化形式 "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