-2

您好,我试图从网站上提取一些信息以将其放入表格中,然后在 php 中打印

我正在使用 DOM 解析器,因为它看起来正是我需要的

 <?php

 include 'simple_html_dom.php';

 $html = file_get_html('http://evolve.sg-community.de/index.php?page=plugins');
 $table = $html->find('#theTable');

 $theData = array();

 foreach($table->find('tr') as $row) {
    $rowData = array();
    foreach($row->find('td.text') as $cell) {
       $rowData[] = $cell->innertext;
    }
    $theData[] = $rowData;
 }
 print_r($theData);
 ?>

我不断得到

 Fatal error: Call to a member function find() on a non-object

 foreach($table->find('tr') as $row) {
4

3 回答 3

0

您可以使用 phpQuery 来解析该页面并获取您想要的内容

查询

于 2012-05-29T06:30:35.530 回答
0

您可以使用 DOM 解析器,请参阅http://docs.php.net/manual/en/domdocument.loadhtml.php了解更多信息。

于 2012-05-29T06:26:41.817 回答
0

您是在问如何 1)抓取网站或 2)如何剥离数据。

1)看: http: //php.net/manual/en/book.curl.php

于 2012-05-29T06:28:22.290 回答