是的,我正在构建一个网络爬虫,我的代码中有一部分转换为绝对 URL,而不是 /macbookpro/ 到http://www.apple.com/macbookpro。但是当我回显我的代码时,它只打印一个结果,这是它看到原因的第一个链接。我是否必须创建一个数组,因为当我这样做时,我回显了数组并列出了“数组”这个词
<?php
require_once('simplehtmldom_1_5/simple_html_dom.php');
require_once('url_to_absolute/url_to_absolute.php');
$URL = 'http://www.theqlick.com'; // change it for urls to grab
// grabs the urls from URL
$file = file_get_html($URL);
foreach ($file->find('a') as $theelement) {
$links = url_to_absolute($URL, $theelement->href);
}
echo $links;
?>