通过php脚本解析html表并将其打印在我们的页面上

时间:2013-08-08 20:30:36

标签: php html

我有一个包含一些数据的表here,所以我想复制那些数据,并希望通过php脚本在我的网页上打印,所以有人请帮助我,如果你不介意任何人为此问题提供合适的代码。

2 个答案:

答案 0 :(得分:1)

使用像SimpleHTMLDom这样的DOM解析器。

include 'simple_html_dom.php';
$html = file_get_html('http://result.msrit.edu/getresult.php?myusn=1ms10cs410&B1=GET%20RESULT');
$elems = $html->find("/html/body/table/tbody/tr[1]/th[1]/div"); 

foreach($elems as $v) 
{

//do the parsing here 

}

阅读documentation了解可用选项和示例。

希望这有帮助!

答案 1 :(得分:1)

$dom = new DomDocument();
@$dom->loadHTML(file_get_contents ('http://result.msrit.edu/getresult.php?myusn=1ms10cs410&B1=GET%20RESULT'));
$table=$dom->getElementsByTagName('table');
echo $dom->saveHTML($table->item(0));