0
我試圖從谷歌接收價格數據搜索和該代碼給了我一個「試圖獲得非對象的財產」「試圖讓非對象的屬性」的錯誤PHP
<?php
$html = file_get_contents('http://www.google.com/#q=ps3&tbm=shop'); //get the html returned from the following url
$glist = array();
$gdoc = new DOMDocument();
libxml_use_internal_errors(TRUE); //disable libxml errors
if(!empty($html)){ //if any html is actually returned
$gdoc->loadHTML($html);
libxml_clear_errors(); //remove errors for yucky html
$gxpath = new DOMXPath($gdoc);
$name = $gxpath->query('b')->item(0)->nodeValue;
}
echo "<pre>";
print_r($glist);
echo "</pre>";
?>
任何幫助會很好!
實際上,非對象只能是'item(0)'的返回值。我們知道,因爲抱怨是關於缺少'property'而不是'member function'。缺少的屬性信息是一個通知,但缺少的功能將是致命的。 – pguardiario
謝謝@pguardiario,我的錯誤:) –