I'v tried converting the text to or from utf8… didn't seem to help

Im getting:

"It’s Getting the Best of Me"

It should be:

"It’s Getting the Best of Me"

Im getting this data from a url -> http://www.tvrage.com/quickinfo.php?show=Surviver&ep=20x02&exact=0

link|improve this question

1  
I see this sometimes when people IM or email me from a Mac. Looking forward to seeing the solution. – Eric J. Feb 18 '10 at 20:37
Yeah im testing the code on a Mac too, using MAMP Pro. – Mint Feb 18 '10 at 20:39
1  
Aah, Windows-1252, how I loathe thee. – Broam Feb 18 '10 at 20:42
feedback

5 Answers

up vote 6 down vote accepted

To convert to HTML entities:

<?php
  echo mb_convert_encoding(
    file_get_contents('http://www.tvrage.com/quickinfo.php?show=Surviver&ep=20x02&exact=0'),
    "HTML-ENTITIES",
    "UTF-8"
  );
?>

See docs for mb_convert_encoding for more encoding options.

link|improve this answer
That works, though I can't figure out to get it to work on fopen – Mint Feb 19 '10 at 4:11
2  
Once you get the contents of the file you want, then pass it in as the first parameter to mb_convert_encoding(). e.g., $text = fgets($fp); $html = mb_convert_encoding($text, "HTML-ENTITIES", "UTF-8"); – Matthew Feb 19 '10 at 4:46
Thanks, that works. – Mint Feb 19 '10 at 9:36
Oh man, thank you so much!, you just saved the day, or better to say a lot of days! – Nikola Feb 13 at 20:27
feedback

Your content is fine, the problem is with the headers the server is sending:

Connection:Keep-Alive
Content-Length:502
Content-Type:text/html
Date:Thu, 18 Feb 2010 20:45:32 GMT
Keep-Alive:timeout=1, max=25
Server:Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.7 with Suhosin-Patch
X-Powered-By:PHP/5.2.4-2ubuntu5.7

Content-Type should be set to Content-type: text/plain; charset=utf-8, because this page is not HTML and uses the utf-8 encoding (chromium on mac guesses ISO-8859-1 and displays the characters you're describing)

If you are not in control of the site, specify the encoding as UTF-8 to whatever function you use to retrieve the content (not familiar enough with PHP to know how exactly)

link|improve this answer
text/text? Don't you mean text/plain? – Chris Jester-Young Feb 18 '10 at 20:50
Thanks, fixed now – cobbal Feb 18 '10 at 20:57
feedback

Make sure your html header specifies utf8

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

That usually does the trick for me (obviously if the content IS utf8).

You don't need to convert to html entities if you set the content-type.

link|improve this answer
feedback

It sounds like you're using standard string functions on a UTF8 characters (’) that doesn't exist in ISO 8859-1. Check that you are using Unicode compatible PHP settings and functions. See also the multibyte string functions.

link|improve this answer
feedback

I looked at the link, and it looks like UTF-8 to me. i.e., in Firefox, if you pick View, Character Encoding, UTF-8, it will appear correctly.

So, you just need to figure out how to get your PHP code to process that as UTF-8. Good luck!

link|improve this answer
Try htmlspecialchars_decode – Levi Hackwith Feb 18 '10 at 20:41
Nop, didn't change at all. – Mint Feb 19 '10 at 4:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.