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?
try
$string = mb_convert_encoding($string,'HTML-ENTITIES','utf-8');