You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.6 KiB

3 years ago
  1. Symfony Polyfill / Intl: Grapheme
  2. =================================
  3. This component provides a partial, native PHP implementation of the
  4. [Grapheme functions](https://php.net/intl.grapheme) from the
  5. [Intl](https://php.net/intl) extension.
  6. - [`grapheme_extract`](https://php.net/grapheme_extract): Extract a sequence of grapheme
  7. clusters from a text buffer, which must be encoded in UTF-8
  8. - [`grapheme_stripos`](https://php.net/grapheme_stripos): Find position (in grapheme units)
  9. of first occurrence of a case-insensitive string
  10. - [`grapheme_stristr`](https://php.net/grapheme_stristr): Returns part of haystack string
  11. from the first occurrence of case-insensitive needle to the end of haystack
  12. - [`grapheme_strlen`](https://php.net/grapheme_strlen): Get string length in grapheme units
  13. - [`grapheme_strpos`](https://php.net/grapheme_strpos): Find position (in grapheme units)
  14. of first occurrence of a string
  15. - [`grapheme_strripos`](https://php.net/grapheme_strripos): Find position (in grapheme units)
  16. of last occurrence of a case-insensitive string
  17. - [`grapheme_strrpos`](https://php.net/grapheme_strrpos): Find position (in grapheme units)
  18. of last occurrence of a string
  19. - [`grapheme_strstr`](https://php.net/grapheme_strstr): Returns part of haystack string from
  20. the first occurrence of needle to the end of haystack
  21. - [`grapheme_substr`](https://php.net/grapheme_substr): Return part of a string
  22. More information can be found in the
  23. [main Polyfill README](https://github.com/symfony/polyfill/blob/master/README.md).
  24. License
  25. =======
  26. This library is released under the [MIT license](LICENSE).