I'd like to use the normalizer class to achieve something like:
'ö ä ü é ô' => 'o a u e o'
I ran this php-script:
header("Content-Type: text/html; charset=UTF-8");
echo Normalizer::normalize('ö ä ü é ô', Normalizer::FORM_C);
the result is:
ö ä ü é ô
So there is no difference to the input. What can I do?