次のように終了するcurlスクリプトがあります。
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
$data 文字列は、データをMYSQLデータベースに保存できるように削除したいテーブルを含むHTMLページです。次のようなコマンドでDOMを使用してみました。
// new dom object
$dom = new DOMDocument();
//load the html
$html = str_get_html($returned_content2);
$dom->strictErrorChecking = false;
//discard white space
$dom->preserveWhiteSpace = false;
//the table by its tag name
$tables = $dom->getElementsByTagName('table');
//get all rows from the table
$rows = $tables->item(0)->getElementsByTagName('tr');
// loop over the table rows
foreach ($rows as $row)
{
// get each column by tag name
$cols = $row->getElementsByTagName('td');
// echo the values
echo $cols->item(0)->nodeValue.'<br />';
echo $cols->item(1)->nodeValue.'<br />';
echo $cols->item(2)->nodeValue;
}
}
しかし、エラーが発生し続けます:
致命的なエラー: 178 行目の /home/sdsd/dfdsfsdfds/sdfsdfs/table.php の非オブジェクトに対するメンバー関数 getElementsByTagName() の呼び出し