summaryrefslogtreecommitdiff
path: root/vendor/symfony/polyfill-intl-grapheme/bootstrap80.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/polyfill-intl-grapheme/bootstrap80.php')
-rw-r--r--vendor/symfony/polyfill-intl-grapheme/bootstrap80.php50
1 files changed, 50 insertions, 0 deletions
diff --git a/vendor/symfony/polyfill-intl-grapheme/bootstrap80.php b/vendor/symfony/polyfill-intl-grapheme/bootstrap80.php
new file mode 100644
index 0000000..b8c0786
--- /dev/null
+++ b/vendor/symfony/polyfill-intl-grapheme/bootstrap80.php
@@ -0,0 +1,50 @@
1<?php
2
3/*
4 * This file is part of the Symfony package.
5 *
6 * (c) Fabien Potencier <fabien@symfony.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12use Symfony\Polyfill\Intl\Grapheme as p;
13
14if (!defined('GRAPHEME_EXTR_COUNT')) {
15 define('GRAPHEME_EXTR_COUNT', 0);
16}
17if (!defined('GRAPHEME_EXTR_MAXBYTES')) {
18 define('GRAPHEME_EXTR_MAXBYTES', 1);
19}
20if (!defined('GRAPHEME_EXTR_MAXCHARS')) {
21 define('GRAPHEME_EXTR_MAXCHARS', 2);
22}
23
24if (!function_exists('grapheme_extract')) {
25 function grapheme_extract(?string $haystack, ?int $size, ?int $type = GRAPHEME_EXTR_COUNT, ?int $offset = 0, &$next = null): string|false { return p\Grapheme::grapheme_extract((string) $haystack, (int) $size, (int) $type, (int) $offset, $next); }
26}
27if (!function_exists('grapheme_stripos')) {
28 function grapheme_stripos(?string $haystack, ?string $needle, ?int $offset = 0): int|false { return p\Grapheme::grapheme_stripos((string) $haystack, (string) $needle, (int) $offset); }
29}
30if (!function_exists('grapheme_stristr')) {
31 function grapheme_stristr(?string $haystack, ?string $needle, ?bool $beforeNeedle = false): string|false { return p\Grapheme::grapheme_stristr((string) $haystack, (string) $needle, (bool) $beforeNeedle); }
32}
33if (!function_exists('grapheme_strlen')) {
34 function grapheme_strlen(?string $string): int|false|null { return p\Grapheme::grapheme_strlen((string) $string); }
35}
36if (!function_exists('grapheme_strpos')) {
37 function grapheme_strpos(?string $haystack, ?string $needle, ?int $offset = 0): int|false { return p\Grapheme::grapheme_strpos((string) $haystack, (string) $needle, (int) $offset); }
38}
39if (!function_exists('grapheme_strripos')) {
40 function grapheme_strripos(?string $haystack, ?string $needle, ?int $offset = 0): int|false { return p\Grapheme::grapheme_strripos((string) $haystack, (string) $needle, (int) $offset); }
41}
42if (!function_exists('grapheme_strrpos')) {
43 function grapheme_strrpos(?string $haystack, ?string $needle, ?int $offset = 0): int|false { return p\Grapheme::grapheme_strrpos((string) $haystack, (string) $needle, (int) $offset); }
44}
45if (!function_exists('grapheme_strstr')) {
46 function grapheme_strstr(?string $haystack, ?string $needle, ?bool $beforeNeedle = false): string|false { return p\Grapheme::grapheme_strstr((string) $haystack, (string) $needle, (bool) $beforeNeedle); }
47}
48if (!function_exists('grapheme_substr')) {
49 function grapheme_substr(?string $string, ?int $offset, ?int $length = null): string|false { return p\Grapheme::grapheme_substr((string) $string, (int) $offset, $length); }
50}