Hi,
I have the following code:
$d = xpath->query($myxpath );
$text = $d->item(0)->nodeValue;
print $text;
While this code is working well with English characters, non-English
characters (Hebrew, German, Russian) are not encoded properly and the
output is unreadable gibberish.
I know PHP XML DOM is Unicode, but even iconv or other functions
unable to display those characters as they should.
Comment