如何使用PHP代码刮取多个表中的数据

时间:2016-01-12 06:41:44

标签: php web-scraping using

如何使用php代码刮取表中的数据

我已经尝试过这个

 $row = $html->find('//div[@id="content"]/table[3]/tr[2]/td');
foreach($row as $value) {
    $values[] = trim($value->textContent);
}

http://rshankar.com/test-driven-development-in-ios-beginners-tutorial-part-1/

enter code here

1 个答案:

答案 0 :(得分:0)

试试吧。使用java查询

var tableRow = $("td").filter(function() {
        if($(this).text() == "Carbon Black Metallic")
            $(this).text('');
    });