2015-09-07 72 views
0

我想解析一个网站,但 我总是得到一个错误:服务不按顺序。HTML解析错误:服务不顺序 - 尝试解析网站时

无论我给出什么开始或结束字符串。 我也尝试使用其他网址,我复制 来自其他用户的完整示例,为他们工作 但不适合我。我也试图将尺寸增加到20000. 但没有任何工作。

这里是我的PHP脚本:

<?php 
// URL, die durchsucht werden soll 
$url = "http://cordis.europa.eu/project/rcn/85400_en.html"; 

// Zeichenfolge vor relevanten Einträgen 
$startstring = "<div class='tech'><p>"; 

// bis zum nächsten html tag bzw. Zeichenfolge nach relevanten Einträgen 
$endstring = "<"; 

$file = @fopen ($url,"r"); 

if($file) 
{ 
    echo "URL found<br>"; 
} 

if (trim($file) == "") { 
    echo "Service out of order - File:".$file."<br>"; 
    } else { 
    $i=0; 
    while (!feof($file)) { 

     // Wenn das File entsprechend groß ist, kann es unter Umständen 
     // notwendig sein, die Zahl 2000 entsprechend zu erhöhen. Im Falle 
     // eines Buffer-Overflows gibt PHP eine entsprechende Fehlermeldung aus. 

     $zeile[$i] = fgets($file,20000); 
     $i++; 
    } 
    fclose($file); 
} 

// Data filtering 

for ($j=0;$j<$i;$j++) { 
    if ($resa = strstr($zeile[$j],$startstring)) { 
     $resb = str_replace($startstring, "", $resa); 
     $endstueck = strstr($resb, $endstring); 
     $resultat .= str_replace($endstueck,"",$resb); 
     $resultat .= "; "; 
    } 
} 

// Data output 

echo ("Result = ".$resultat."<br>"); 
return $resultat; 

任何帮助是赞赏。 由于事先

编辑:URL被发现,文件中有一个值:资源ID#3

+0

你的网站需要哪些数据? –

+0

尝试DOMDocument –

+0

我只想简单的文字。它就像网站上的描述一样。它的目标下,如果你看页面 –

回答

-1

使用此,它会给预期输出。

<?php 
$ch = curl_init(); 
curl_setopt($ch, CURLOPT_URL,"http://cordis.europa.eu/project/rcn/85400_en.html"); 
curl_setopt($ch, CURLOPT_GET, 1); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
curl_setopt($ch, CURLOPT_ENCODING, ''); 

$headers = array(); 
$headers[] = 'Accept:text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8'; 
$headers[] = 'Accept-Encoding:gzip, deflate, sdch'; 
$headers[] = 'Accept-Language:en-US,en;q=0.8'; 
$headers[] = 'Cache-Control:max-age=0'; 
$headers[] = 'Connection:keep-alive'; 
$headers[] = 'Cookie:CORDIS=14.141.177.158.1441621012200552; PHPSESSID=jrf2e3t4vu56acdkf9np0tat06; WT_FPC=id=14.141.177.158-1441621016.978424:lv=1441605951963:ss=1441604805004 
Host:cordis.europa.eu'; 
$headers[] = 'User-Agent:Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.134 Safari/537.36'; 
$headers[] = 'Host:cordis.europa.eu'; 
$headers[] = 'Request URL:http://cordis.europa.eu/project/rcn/85400_en.html'; 

curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); 
$server_output = curl_exec($ch); 
curl_close($ch); 

$dom = new DOMDocument; 
$dom->loadHTML($server_output); 
$xpath = new DomXpath($dom); 

$div = $xpath->query("//*[@class='tech']")->item(0); 
$data = trim($div->textContent); 
echo $data; 
?> 

输出

enter image description here

2

尝试

<?php 
// URL, die durchsucht werden soll 
$url = "http://cordis.europa.eu/project/rcn/85400_en.html"; 

$html = file_get_contents($url); 

if ($html === false) { 
    //Service unavailable 
    echo 'Service unavailable'; 
    return; 
} 
$dom = new DOMDocument; 
$dom->loadHTML($html); 
$xpath = new DomXpath($dom); 

$div = $xpath->query("//*[@class='tech']")->item(0); 
$output = trim($div->textContent); 

// Data output 

echo ("Result = " . $output. "<br>"); 
return $output; 
+0

它给空结果 –

+0

返回$ resultat;是空的 –

+0

服务器现在超载;-) –