I'm trying to convert the lower case letter 'ß' to the upper case pendant. I already tried using the built-in functions strtoupper and mb_strtoupper.
The following happened when I use strtoupper:
echo strtoupper('ß'); // leads to 'ß'
The following happened when I use mb_strtoupper:
echo mb_strtoupper('ß', 'UTF-8'); // leads to 'SS'