0

我尝试获取这个 URL 的内容:http://www.chromeball.com,但是字符编码不好。

我有这个代码:

$url = 'http://www.chromeball.com';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$data = curl_exec($ch);
curl_close($ch);


$dom = new DOMDocument();
$dom->loadHTML($data);
$xpath = new DOMXPath($dom);  
$nodes = $xpath->query('//text() | //@alt | //@title | /html/head/meta[@name="description"] | /html/head/meta[@name="keywords"]');
foreach($nodes as $node) {
  $textNodeContent .= " ".$node->nodeValue;
}

$enc = mb_detect_encoding($textNodeContent,'iso-8859-2,iso-8859-1,utf-8');
print  iconv($enc,'utf-8//TRANSLIT',$textNodeContent);

但这不起作用。字符编码错误。如何将 $textNodeContent 转换为 utf-8?谢谢。

4

2 回答 2

0

mb_detect_encoding页面上的评论来看,该功能似乎不是特别可靠。Chrigu(参见 2005 年 3 月 29 日 03:32 的帖子)建议将其UTF-8作为列表中的第一个字符编码:

$enc = mb_detect_encoding($textNodeContent,'utf-8,iso-8859-2,iso-8859-1');

我试过了,现在它显示内容为 UTF-8。但是,我刚刚尝试使用 ISO-8859-1 内容,它也将其检测为 UTF-8 ......

于 2010-07-10T18:20:44.210 回答
0

像这样初始化 DOM:

$dom->loadHTML('<?xml encoding="UTF-8">' . $data);
于 2010-07-10T18:35:34.643 回答