获取文本td Xpath PHP

时间:2013-07-18 15:19:18

标签: php xpath domready

我得到tr表,然后在循环中我想得到所有td字段的文本,看看这里:

<?
    $lines = $xpath->query("//table[@id='cab_table'] //tr");
       var_dump($lines);// Give me object(DOMNodeList)#11 (1) { ["length"]=> int(6) }


            for( $i = 0; $i < count($lines); $i++) {
                if($i != 0){
                    $tds = $xpath->query('//td', $lines[$i]);
                    $result[$i - 1]['number'] = trim($tds->item(0)->nodeValue);
                    $result[$i - 1]['volume'] = trim($tds->item(1)->nodeValue);
                    $result[$i - 1]['sum'] = trim($tds->item(2)->nodeValue);
                }
            }

            var_dump($result); //Give me NULL
            die();

&GT;

为什么我得到NULL?

现在我有:

$lines = $xpath->query("//table[@id='cab_table'] //tr");


            foreach($lines as $line) {
             $tds = $xpath->query('//td', $line);
             $count = $tds->length;

                for($i=0; $i<$count; $i++){

                    echo $tds->item($i)->nodeValue.'<br>';
                    //echo $i.'<br>';


                }

            }

但我想在循环中为每个tr做下一个$result[0] = td[0]; $result[1] = td[1]; $result[2] = td[2];你能告诉我吗?

2 个答案:

答案 0 :(得分:0)

->query()返回一个DOMNodeList对象。它可以是count()ed和foreach()ed,但你不能像现在这样使用它。

$tds = $xpath->query('//td', $lines[$i]);
                             ^^^^^^^^^^---incorrect

尝试

$lines = $xpath->query("//table[@id='cab_table'] //tr");
foreach($lines as $line) {
    $tds = $xpath->query('//td', $line);
    ...
}

代替。

答案 1 :(得分:0)

foreach($lines as $line) {

                    for($j=0; $j<=3; $j++) {

                     $tds_{$j} = $xpath->query('//td['.$j.']', $line);
                     $tds_{$j} = $xpath->query('//td['.$j.']', $line);
                     $tds_{$j} = $xpath->query('//td['.$j.']', $line);

                     $count = $tds_{$j}->length;


                        for($i=0; $i<$count; $i++){

                            $this->result['number'][] = $tds_{$j}->item($i)->nodeValue;
                            $this->result['volume'][] = $tds_{$j}->item($i)->nodeValue;
                            $this->result['code'][] = $tds_{$j}->item($i)->nodeValue;
                            $this->result['start_date'][] = $startDate;
                            $this->result['end_date'][] = $endDate;

                        }

                    }

                }