php 从HTML页面获取HTML表格数据并从特定格式检索[已关闭]

2vuwiymt  于 2023-05-21  发布在  PHP
关注(0)|答案(1)|浏览(138)

已关闭,此问题需要更focused。目前不接受答复。
**想改善这个问题吗?**更新问题,使其仅通过editing this post关注一个问题。

4天前关闭。
Improve this question
我有古吉拉特邦董事会学生成绩如下html页面。在此页面中,学生成绩数据存储在HTML表格中。所有结果数据以如下格式获得。
https://gseb.org/522lacigam/sci/B24/06/B240661.html
Result Format我可以得到所有的结果数据从html表在特定格式.

ql3eal8s

ql3eal8s1#

1.首先,您需要从http://simplehtmldom.sourceforge.net/下载简单的HTML DOM解析库,并将其包含在PHP脚本中
included('simple_html_dom.php');
1.接下来,可以使用库从URL加载HTML文档,并查找包含结果数据的table元素。
$url = 'https://gseb.org/522lacigam/sci/B24/06/B240661.html';$html = file_get_html($url);
$table = $html->find('table',0);
1.一旦有了table元素,就可以迭代它的行并从每个单元格中提取数据。

$data = array();

 foreach ($table->find('tr') as $row) {
     $rowData = array();

foreach ($row->find('td') as $cell) {
     $rowData[] = $cell->plaintext;
 }
 $data[] = $rowData;

}

相关问题