Is there a way to fix the characters that display improperly after running this html markup through phpquery::newDocument? There are slated double quotes around -Classics with modern Woman- in the original document that end up displaying improperly after creating the new doc with phpquery.

    //Original document is UTF-8 encoded
$raw_html = '<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /></head><body><p>Mr. Smith of Bangkok celebrated the “Classics with modern Woman”.</p></body></html>';
print($raw_html);

$aNew_document = phpQuery::newDocument($raw_html);
print($aNew_document);

Original Output: Mr. Smith of Bangkok celebrated the “Classics with modern Woman”.

New Document Output: Mr. Smith of Bangkok celebrated the �Classics with modern Woman.

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted
  1. You need to save the page with UTF-8 without BOM encoding.
  2. Add this header on top of your script:

    header("Content-Type: text/html; charset=UTF-8");

[EDIT]: How to Save Files as UTF-8 without BOM :

On OP request, here's how you can do on Windows:

  1. Download Notepad++. It is an awesome text-editor that you should be using.
  2. Install it.
  3. open the PHP script in Notepad++ that contains this code. The page where you are doing all the coding. Yes, that file on your computer.
  4. In Notepad++, from the Encoding menu at the top, select "Convert to UTF-8 without BOM".
  5. Save the file.
  6. Upload to your webserver by FTP or whatever you use.
  7. Now, run that script.
link|improve this answer
+1 because I've had this problem before when I used to be on Windows.... this is Windows saving files as CP1251 (or whatever the code page). Everything should always be saved as UTF-8 and content sent also using UTF-8. Linux doesn't have this problem :) – Yanick Rochon Aug 28 '10 at 3:35
@Yanick, same here. – shamittomar Aug 28 '10 at 3:39
Tried adding -header("Content-Type: text/html; charset=UTF-8");- at the top of the script, but it didn't fix it. Can you articulate what you mean by page being saved in this example? I don't think the page is ever saved, but exists in memory on the linux server before getting recreated by phpquery::newdocument(). If possible can you show how to insert this code properly? Or how to save the document with the correct encoding? I may be doing something wrong. Thanks – JMC Aug 28 '10 at 4:38
@acidjazz, I have updated the answer on how to save as UTF-8 without BOM. By saying. "save the page", I mean save the file that has the code in UTF-8 without BOM mode. – shamittomar Aug 28 '10 at 4:52
@shamittomar - +1 Good tool thanks. I can see using this as a companion to eclipse. My real problem is that I'm using $raw_html = file_get_contents($webpage_url); to get the html. In this case the file never gets saved. This is my fault for not specifying that in the original post. The special encoded chars are fine in $raw_html. When I pass the $raw_html into phpquery::newdocument the character encoding issue surfaces. – JMC Aug 28 '10 at 5:15
show 4 more comments
feedback

You have this in the <head> element:

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

The next course would be to use HTML entities to display these characters.

link|improve this answer
this won't solve the problem if the file itself is not saved as UTF-8 – Yanick Rochon Aug 28 '10 at 3:36
feedback

Your Answer

 
or
required, but never shown

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