QueryPath:包含选择器

时间:2014-01-17 03:12:06

标签: php selector querypath

QueryPath让我很难在下面的代码中使用Contains选择器。我所看到的一切看起来都是正确的。

$qp       = htmlqp($url, 'body');
$parent_table = $qp->branch()->find('table')->eq(0);

$listings    = $parent_table->branch()->find('table.text')->eq(0);
$rows        = $listings->branch()->find('tr:contains(<!--select_this-->)');

这是我的HTML

<table>
    <tr>
        <table class="text">
            <tr>...</tr>
            <tr>
                <!---select_this-->
            </tr>
            .......

0 个答案:

没有答案