我尝试使用 simple_html_dom 从网页中检索信息,如下所示:
<?PHP
include_once('dom/simple_html_dom.php');
$urlpart="http://w2.brreg.no/motorvogn/";
$url = "http://w2.brreg.no/motorvogn/heftelser_motorvogn.jsp?regnr=BR15597";
$html = file_get_html($url);
foreach($html->find('a') as $element)
if(preg_match('*dagb*',$element)) {
$result=$urlpart.$element->href;
$resultcontent=file_get_contents($result);
echo $resultcontent;
}
?>
$result 变量首先给了我这个 URL: http ://w2.brreg.no/motorvogn/dagbokutskrift.jsp?dgbnr=2011365320&embnr=0®nr=BR15597
当使用我的浏览器访问上述 URL 时,我得到了我期望的内容。
使用 $resultcontent 检索内容时,我得到了不同的结果,它在挪威语中显示为“无效输入”。
任何想法为什么?