所以我使用CURL替换PHP中的file_get_contents和get_meta_tags功能:
<?php
class CURL{
public static function file_get_contents($url){
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
$data = curl_exec($ch);
curl_close($ch);
iconv("Windows-1252","UTF-8",$text);
return $data;
}
public static function get_meta_tags($url){
$html = self::file_get_contents($url);
self::get_meta_tags_html($html);
}
public static function get_meta_tags_html($html){
//parsing begins here:
$doc = new DOMDocument();
@$doc->loadHTML($html);
//$nodes = $doc->getElementsByTagName('title');
//get and display what you need:
//$title = $nodes->item(0)->nodeValue;
$metas = $doc->getElementsByTagName('meta');
$return = array();
for ($i = 0; $i < $metas->length; $i++)
{
$meta = $metas->item($i);
if($meta->getAttribute('name') == 'title')
$return["title"] = $meta->getAttribute('content');
if($meta->getAttribute('name') == 'description')
$return['description'] = $meta->getAttribute('content');
if($meta->getAttribute('name') == 'keywords')
$return['keywords'] = $meta->getAttribute('content');
}
return $return;
}
}
?>
然后当我调用CURL :: get_meta_tags时,在其中包含外来字母的网站上,如日语,它将返回奇怪的字符而不是日文字母,而如果我使用内置的php get_meta_tags,它将返回正确的性格...
我应该如何修改这段代码,使得CURL :: get_meta_tags也能正确返回外来字符,就像内置的php get_meta_tags
一样答案 0 :(得分:1)
您更有可能只是尝试使用错误的编码显示文本。
如果使用标题功能设置字符集,它应该看起来正确。
header('Content-Type: text/html; charset=utf-8');
您可以检查设置的元标记中的字符集是什么,然后使用它。