标签: php xpath
我想从页面中的许多表中选择此表(如图中所示)。我目前正在使用Xpath工作正常:
$elements = $dom_xpath->query('//table[descendant::td[1]="Train No" and descendant::td[3]="Runs From Source"]');
但显然没有优化。 我想用它添加两个条件
该表必须只包含两个TR(标题的第一个)。