我想用一個網站的內容,包括它們與"Simple Html DOM"礦,可惜這通常適用於另一個網站的代碼,無法在這種特殊情況下:簡單的HTML DOM不工作的表[類]
<?php
// Note you must download the php files from the link above
// and link to them on this line below.
include_once('simple_html_dom.php');
$html = file_get_html('http://www.comelmar.it/index.aspx?idmnu=23&midx=3&mbidx=2&idmnub=8&Lang=EN');
$elem = $html->find('table[class=Descrizione]', 0);
echo $elem;
?>
Warning: file_get_contents(http://www.comelmar.it/index.aspx?idmnu=23&midx=3&mbidx=2&idmnub=8&Lang=EN) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.1 500 Internal Server Error in public_html/elin-custom-code/simple_html_dom.php on line 75
Fatal error: Call to a member function find() on a non-object in public_html/elin-custom-code/sklad-1.php on line 9
它看起來像頁面需要用戶代理或其他東西。它投擲500意味着有錯誤。你的'致命錯誤'是因爲'$ html'是錯誤的。 – chris85