我正在尝试使用 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";
}
?>
我能做些什么来解决这个问题?