I want to convert some text from utf-8 to iso-8859-1 (in PHP) so I do this:
$message_iso = utf8_decode($message_utf8);
It works pretty well for é or ô but not for the simple quote ‘ which is replace by a ? .
How can I make it work?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Maybe use iconv for this: