(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0)
Normalization is a process that involves transforming characters and sequences of characters into a formally-defined underlying representation. This process is most important when text needs to be compared for sorting and searching, but it is also used when storing text to ensure that the text is stored in a consistent representation.
The Unicode Consortium has defined a number of normalization forms reflecting the various needs of applications:
public static getRawDecomposition ( string $input ) : string
public static isNormalized ( string $input [, int $form = Normalizer::FORM_C ] ) : bool
public static normalize ( string $input [, int $form = Normalizer::FORM_C ] ) : string}
The following constants define the normalization form used by the normalizer:
Normalizer::FORM_C
(int) Normalizer::FORM_D
(int) Normalizer::FORM_KC
(int) Normalizer::FORM_KD
(int) Normalizer::NONE
(int) Normalizer::OPTION_DEFAULT
(int)
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/class.normalizer.php