diff options
Diffstat (limited to 'vendor/symfony/polyfill-intl-grapheme/README.md')
-rw-r--r-- | vendor/symfony/polyfill-intl-grapheme/README.md | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/vendor/symfony/polyfill-intl-grapheme/README.md b/vendor/symfony/polyfill-intl-grapheme/README.md new file mode 100644 index 0000000..f55d92c --- /dev/null +++ b/vendor/symfony/polyfill-intl-grapheme/README.md | |||
@@ -0,0 +1,31 @@ | |||
1 | Symfony Polyfill / Intl: Grapheme | ||
2 | ================================= | ||
3 | |||
4 | This component provides a partial, native PHP implementation of the | ||
5 | [Grapheme functions](https://php.net/intl.grapheme) from the | ||
6 | [Intl](https://php.net/intl) extension. | ||
7 | |||
8 | - [`grapheme_extract`](https://php.net/grapheme_extract): Extract a sequence of grapheme | ||
9 | clusters from a text buffer, which must be encoded in UTF-8 | ||
10 | - [`grapheme_stripos`](https://php.net/grapheme_stripos): Find position (in grapheme units) | ||
11 | of first occurrence of a case-insensitive string | ||
12 | - [`grapheme_stristr`](https://php.net/grapheme_stristr): Returns part of haystack string | ||
13 | from the first occurrence of case-insensitive needle to the end of haystack | ||
14 | - [`grapheme_strlen`](https://php.net/grapheme_strlen): Get string length in grapheme units | ||
15 | - [`grapheme_strpos`](https://php.net/grapheme_strpos): Find position (in grapheme units) | ||
16 | of first occurrence of a string | ||
17 | - [`grapheme_strripos`](https://php.net/grapheme_strripos): Find position (in grapheme units) | ||
18 | of last occurrence of a case-insensitive string | ||
19 | - [`grapheme_strrpos`](https://php.net/grapheme_strrpos): Find position (in grapheme units) | ||
20 | of last occurrence of a string | ||
21 | - [`grapheme_strstr`](https://php.net/grapheme_strstr): Returns part of haystack string from | ||
22 | the first occurrence of needle to the end of haystack | ||
23 | - [`grapheme_substr`](https://php.net/grapheme_substr): Return part of a string | ||
24 | |||
25 | More information can be found in the | ||
26 | [main Polyfill README](https://github.com/symfony/polyfill/blob/main/README.md). | ||
27 | |||
28 | License | ||
29 | ======= | ||
30 | |||
31 | This library is released under the [MIT license](LICENSE). | ||