在XPATH表达式中添加另外两个条件

时间:2012-03-15 16:48:58

标签: php xpath

我想从页面中的许多表中选择此表(如图中所示)。我目前正在使用Xpath工作正常:

$elements = $dom_xpath->query('//table[descendant::td[1]="Train No" and descendant::td[3]="Runs From Source"]');

但显然没有优化。 我想用它添加两个条件

  • TD中的“训练否”和“从源头跑”是第一次TR
  • 该表必须只包含两个TR(标题的第一个)。

    How to add these two in the above xpath expression?

0 个答案:

没有答案