0

我正在获取表格的 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();

?>

为什么我得到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];你能告诉我吗?

4

2 回答 2

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;

                        }

                    }

                }
于 2013-07-18T16:40:18.720 回答
0

->query()返回一个 DOMNodeList 对象。它可以被 count() 和 foreach() 处理,但你不能像现在这样将它用作数组。

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

尝试

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

反而。

于 2013-07-18T15:28:15.130 回答