mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-12 03:01:32 +00:00
The official image from streamline does not currently work for the arm64 platform. As a temporary measure, the source code and docker build scripts have been lifted from the official images and are used to build locally. Some additional modifications are made to reduce overall image size, these are documented in docker/README.md
51 lines
2.6 KiB
PHP
51 lines
2.6 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
use Symfony\Polyfill\Intl\Grapheme as p;
|
|
|
|
if (!defined('GRAPHEME_EXTR_COUNT')) {
|
|
define('GRAPHEME_EXTR_COUNT', 0);
|
|
}
|
|
if (!defined('GRAPHEME_EXTR_MAXBYTES')) {
|
|
define('GRAPHEME_EXTR_MAXBYTES', 1);
|
|
}
|
|
if (!defined('GRAPHEME_EXTR_MAXCHARS')) {
|
|
define('GRAPHEME_EXTR_MAXCHARS', 2);
|
|
}
|
|
|
|
if (!function_exists('grapheme_extract')) {
|
|
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); }
|
|
}
|
|
if (!function_exists('grapheme_stripos')) {
|
|
function grapheme_stripos(?string $haystack, ?string $needle, ?int $offset = 0): int|false { return p\Grapheme::grapheme_stripos((string) $haystack, (string) $needle, (int) $offset); }
|
|
}
|
|
if (!function_exists('grapheme_stristr')) {
|
|
function grapheme_stristr(?string $haystack, ?string $needle, ?bool $beforeNeedle = false): string|false { return p\Grapheme::grapheme_stristr((string) $haystack, (string) $needle, (bool) $beforeNeedle); }
|
|
}
|
|
if (!function_exists('grapheme_strlen')) {
|
|
function grapheme_strlen(?string $string): int|false|null { return p\Grapheme::grapheme_strlen((string) $string); }
|
|
}
|
|
if (!function_exists('grapheme_strpos')) {
|
|
function grapheme_strpos(?string $haystack, ?string $needle, ?int $offset = 0): int|false { return p\Grapheme::grapheme_strpos((string) $haystack, (string) $needle, (int) $offset); }
|
|
}
|
|
if (!function_exists('grapheme_strripos')) {
|
|
function grapheme_strripos(?string $haystack, ?string $needle, ?int $offset = 0): int|false { return p\Grapheme::grapheme_strripos((string) $haystack, (string) $needle, (int) $offset); }
|
|
}
|
|
if (!function_exists('grapheme_strrpos')) {
|
|
function grapheme_strrpos(?string $haystack, ?string $needle, ?int $offset = 0): int|false { return p\Grapheme::grapheme_strrpos((string) $haystack, (string) $needle, (int) $offset); }
|
|
}
|
|
if (!function_exists('grapheme_strstr')) {
|
|
function grapheme_strstr(?string $haystack, ?string $needle, ?bool $beforeNeedle = false): string|false { return p\Grapheme::grapheme_strstr((string) $haystack, (string) $needle, (bool) $beforeNeedle); }
|
|
}
|
|
if (!function_exists('grapheme_substr')) {
|
|
function grapheme_substr(?string $string, ?int $offset, ?int $length = null): string|false { return p\Grapheme::grapheme_substr((string) $string, (int) $offset, $length); }
|
|
}
|