使用simple_html_dom.php获取表元素

时间:2014-04-10 22:38:52

标签: php

我已经阅读了一些帖子,但我对php真的很新,所以......忍受我。

我尝试过使用simple_html_dom.php并获得了一个数组'结果,但我想从这个页面中拉出表格元素,并能够将它们排列在我自己的表格中。我已获得该网站的许可。

http://leddygroup.com/job-list

我想重新创建此列表以在Facebook标签页上使用。我知道它现在只是静态文本,但我希望我可以从你们可以提供的任何例子中学习,因为我认为他们稍后会将它改为某种动态列表。

感谢任何帮助。

编辑:根据以下请求添加代码。再一次,我不知道我到底在做什么,今天会更多地研究,但我收到的任何输出都令我兴奋。 :)

    <?php
require('simple_html_dom.php');

$table = array();

$html = file_get_html('http://leddygroup.com/job-list');
foreach($html->find('tr') as $row) {
    $id = $row->find('td',0)->plaintext;
    $title = $row->find('td',1)->plaintext;
    $state = $row->find('td',2)->plaintext;
    $zip = $row->find('td',3)->plaintext;

    $table[$id][$title][$state][$zip] = true;
}

echo '<pre>';
print_r($table);
echo '</pre>';

?>

0 个答案:

没有答案