我想提取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
你可以帮帮我吗?最好的方法是什么?
谢谢