DOMXPath返回零

时间:2014-07-03 22:35:55

标签: php dom xpath domxpath

我试图从网站中提取一些信息。我需要的信息包含在一个表中,我已经创建了一个查询来查找它。从Chrome使用控制台时,我可以看到表达式返回我需要的表格。但是当我设置PHP代码时,查询返回零。

这是来自Chrome控制台

enter image description here

这是我的PHP代码

$ch = curl_init($domain);
curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
$cl = curl_exec($ch);
$dom = new DOMDocument();
@$dom->loadHTML($cl);
$xpath = new DOMXPath($dom);

$table = $xpath->query("//div[@id='content_fmainplace']//form/table/tbody/tr[15]//table");
echo $table->length;

有什么想法吗?我在这里缺少什么?

1 个答案:

答案 0 :(得分:1)

你真的不需要瞄准div。只需定位表格的id即可。请考虑以下示例:Sample Output

$domain = 'http://app.cfe.gob.mx/Aplicaciones/CCFE/Tarifas/Tarifas/tarifas_casa.asp?Tarifa=DACTAR1E&Temporada4=Verano&Anio=2014&imprime=&Periodo=4&mes2=a+septiembre.&mes=1';
$ch = curl_init($domain);
curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
$cl = curl_exec($ch);
$dom = new DOMDocument();
libxml_use_internal_errors(true);
$dom->loadHTML($cl);
libxml_clear_errors();
$xpath = new DOMXPath($dom);

// target the title
$title = $values = $xpath->query('//table[@id="Table1"]/tr[1]/td[1]/form/table/tr[14]')->item(0)->nodeValue; // title rows
$rows = $xpath->query('//table[@id="Table1"]/tr[1]/td[1]/form/table/tr[15]/td/table/tr');
$row_values = array();

// process td elements
foreach($rows as $index => $row) {
    foreach($row->childNodes as $td) {
        // clean up
        $row_values[$index][] = preg_replace( '/\s+/', '', trim($td->nodeValue));
    }
    // clean up again
    $row_values[$index] = array_filter($row_values[$index]);
}    

?>

<!-- print them -->
<h1><?php echo $title; ?></h1>
<table cellpadding="10">
<?php foreach($row_values as $values): ?>
    <tr><?php foreach($values as $value): ?>
        <td><?php echo $value; ?></td>
    <?php endforeach; ?></tr>
<?php endforeach; ?>
</table>