mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
15 lines
432 B
PHP
15 lines
432 B
PHP
<?php
|
|
|
|
class Normalizer
|
|
{
|
|
/** @return string|false */
|
|
public static function normalize(string $input, int $form = Normalizer::FORM_C) {}
|
|
|
|
/** @return bool */
|
|
public static function isNormalized(string $input, int $form = Normalizer::FORM_C) {}
|
|
|
|
#if U_ICU_VERSION_MAJOR_NUM >= 56
|
|
/** @return string|null */
|
|
public static function getRawDecomposition(string $input, int $form = Normalizer::FORM_C) {}
|
|
#endif
|
|
}
|