<?php
$html = file_get_contents('https://s.taobao.com/search?q=windwos');//里面填入链接,这里以淘宝为例
$dom = new DOMDocument();
@$dom->loadHTML($html);
// grab all the on the page
$xpath = new DOMXPath($dom);
$hrefs = $xpath->evaluate("/html/body//a");
for ($i = 0; $i < $hrefs->length; $i++) {
       $href = $hrefs->item($i);
       $url = $href->getAttribute('href');
       echo $url.'<br />';
}


© 版权声明
分享是一种美德,转载请保留原链接