我试图将外部网页的某些信息转换为数组。
这是阅读页面的代码:
$url = 'http://dsrd.uc.cl/dara/libcursos/periodo21/ptj/ptj_5_data.html';
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt($ch,CURLOPT_USERAGENT,'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13');
curl_setopt ($ch, CURLOPT_HTTPHEADER, array (
"Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language: en-us,en;q=0.5", "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7"
));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
// get the source code
$html = curl_exec($ch);
以下是将列放入数组的代码
$doc = new DOMDocument();
$doc->loadHTML($html);
$table = $doc->getElementsByTagName("table")->item(0);
$rows = $table->getElementsByTagName("td");
for ($i = 0; $i<100; $i++)
{
$curso[$i] = $rows->item($i);
/* Find columns and add it to your array */
}
print_r($curso);
然而我只是让数组填充“DOMElement Object()”
任何吸烟? THX
更新
忘了添加 - &gt; nodeValue; ....只是愚蠢
无论如何答案 0 :(得分:0)
你将DOMElement
放入其中,所以当然这就是你得到的。根据您的需要,您还可以存储$rows->item($i)->value
,$rows->item($i)->tagName
,$rows->item($i)->textContent
或$rows->item($i)->ownerDocument->saveXML($rows->item($i))
。
您想要哪些数据?