PHP encoding with DOMDocument
Posted
by Olivier Lalonde
on Stack Overflow
See other posts from Stack Overflow
or by Olivier Lalonde
Published on 2010-01-26T19:48:16Z
Indexed on
2010/04/18
14:03 UTC
Read the original article
Hit count: 454
<tag>
????? ?
</tag>
When I try to get the content of the following code using DOMDocument functions, it returns something like:
ÐÐ»ÐµÐºÑ Ðœ
I've tried setting DOMDocument encoding to different values (UTF-8, ISO-8859-1), using mb_convert_encoding, iconv and utf8_encode but without success.
How can I get "????? ?" instead of "ÐÐ»ÐµÐºÑ Ðœ" ?
EDIT: The input is coming from a page loaded with curl. When I output the page content to my browser, the characters are displayed correctly (so I doubt the input is the problem).
© Stack Overflow or respective owner