Am working on php based mime parser. If the body contains string like Iñtërnâtiônàlizætiøn we see that It is getting converted into Iñtërnâtiônà lizætiøn. Can somebody suggest how to handle (what functions) for such string ?
So we are doing the following
Using Zend Library connecting to the IMAP server
mail = new Zend_Mail_Storage_Imap($params);Read the message using
$message = $mail->getMessage($i);in the loop.
- When we print the
$messagewe see the string e.g.Iñtërnâtiônàlizætiønprinted asIñtërnâtiônà lizætiøn.
What I need is if there is someway by which we can retain the original string? And this is just one example we may run into other multi-byte characters, so what to know how we handle this generically?

mb_*functions. – PeeHaa 埽 Jul 2 '12 at 8:29