我正在尝试抓取客户网站主页上的所有网址,以便将其迁移到 wordpress。问题是我似乎无法获得去重的 url 列表。
这是代码:
$html = file_get_contents('http://www.catwalkyourself.com');
$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');
if($url = preg_match_all('((www|http://)(www)?.catwalkyourself.com\/?.*)', $url, $matches[0])){
$urls = $matches[0][0][0];
$list = implode( ', ', array_unique( explode(", ", $urls) ) );
echo $list . '<br/>';
//print_r($list);
}
}
(也张贴在这里。)
相反,我得到这样的重复:
http://www.catwalkyourself.com/rss.php
http://www.catwalkyourself.com/rss.php
我该如何解决?