UTF-8 Decode for php

Jon Rubins picture Jon Rubins · Aug 2, 2012 · Viewed 21.3k times · Source

I am fetching posts from the Tumblr API and am running into an encoding issue with the returned "body" of the "post". All apostrophes are replaced by something that looks like "aETM".

I am trying to use:

utf8_decode($string)

But all that does is replace the occurrences of "aETM" with a "?".

Any suggestions?

Answer

voodoo417 picture voodoo417 · Aug 2, 2012

try

$string = mb_convert_encoding($string,'HTML-ENTITIES','utf-8');