0

我正在尝试使用 Xpath 学习网络抓取。下面的代码有效,但是输出包含不正确的字符,我无法做到这一点。

例子:

  • 输出:EmÃ¥mejeriet
  • 应该如何:Emåmejeriet

PHP代码:

<?php
// Tried with these parameters but they doesn't make any difference
$html = new DOMDocument('1.0', 'UTF-8');
$html->loadHtmlFile('http://thesite.com/thedoc.html);
$xpath = new DOMXPath($html);
$nodelist = $xpath->query("//table");
foreach ($nodelist as $n) {
    echo $n->nodeValue."\n";
}
?>

我能做些什么来解决这个问题?

4

1 回答 1

1

如果使用 ISO8859-15,则应尝试encode()decode()函数,否则应尝试使用 iconv( ) 函数。php

例子 :

<?php
iconv_set_encoding("internal_encoding", "UTF-8");
iconv_set_encoding("output_encoding", "ISO-8859-1");
?>
于 2012-11-18T19:52:00.393 回答