Hi there!
As we all now, handling multibyte strings is not that easy in PHP. For example I want to get the length of the following string: ä
strlen('ä'); // 2, because ä equals 2 bytes
mb_strlen('ä', 'UTF-8'); // 1
iconv_strlen('ä', 'UTF-8'); // 1
Which functions should I use? The mb_* or iconv_*? Why? Considering that the encoding may not be limited to UTF-8.
Thx in advance!