1

我想提取name=""网站的所有属性,

示例 html

<div class="link_row">
    <a href="" class="listing_container" name="7777">link</a>
</div>

我有以下代码:

<?php
$html = new DOMDocument();
@$html->loadHtmlFile('http://www.onedomain.com/plus?ca=11_c&o=1');
$xpath = new DOMXPath( $html );
$nodelist = $xpath->query( "//div[@class='link_row']/a[@class='listing_container']/@name" );
foreach ($nodelist as $n){
    echo $n->nodeValue."\n<br>";
}
?>

结果是:

7777

此代码工作正常,但不必限于一个寻呼机号码。

http://www.onedomain.com/plus?ca=11_c&o=1 寻呼机属性是"o=1"

我想一旦你完成了o=1,跟着o=2 我的变量定义$last=556是相等的http://www.onedomain.com/plus?ca=11_c&o=556

你可以帮帮我吗?最好的方法是什么?

谢谢

4

1 回答 1

1

使用 for(或 while)循环。我没有$last在您提供的代码中看到,所以我静态设置了最大值加一。

$html = new DOMDocument();
for($i =1; $i < 557; $i++) {
    @$html->loadHtmlFile('http://www.onedomain.com/plus?ca=11_c&o=' . $i);
    $xpath = new DOMXPath( $html );
    $nodelist = $xpath->query( "//div[@class='link_row']/a[@class='listing_container']/@name" );
    foreach ($nodelist as $n){
        echo $n->nodeValue."\n<br>";
    }
}

更简单的例子:

for($i =1; $i < 557; $i++) {
    echo $i;
}

http://php.net/manual/en/control-structures.for.php

于 2015-07-07T05:02:48.157 回答