According to the manual, the following constants have been added in PHP 7.3:
MB_CASE_FOLD
MB_CASE_LOWER_SIMPLE
MB_CASE_UPPER_SIMPLE
MB_CASE_TITLE_SIMPLE
MB_CASE_FOLD_SIMPLE
I found an example of what MB_CASE_FOLD
does:
echo mb_convert_case('ẞ', MB_CASE_FOLD, 'UTF-8'); // ss
However, I could not find any reference to what the MB_CASE_*_SIMPLE
constants do.
At first glance, with simple latin1 characters, MB_CASE_LOWER_SIMPLE
behaves just like MB_CASE_LOWER
.
What do the MB_CASE_*_SIMPLE
do different from their MB_CASE_*
counterparts?