0

我想知道是否有可能使此代码搜索该网站的每个页面,以便从所有页面中提取每个图像 src。目前它只会从那一页中提取图像 src。我尝试使用 while 循环,但它只会一遍又一遍地重复主页上的相同结果。任何帮助都会很棒。

<?php
include_once('simple_html_dom.php');

//show errors
ini_set('display_errors', true);
error_reporting(E_ALL);


$html = file_get_html('http://betatv.net/');
$result=($html);
while($html = ($result)) {

// find the show img and echo it out
foreach($html->find('.entry-content') as $cover_img)
foreach($cover_img->find('img') as $cover_img_link)

//echo the images src
echo $cover_img_link->src .'<br>';
echo '<br>';

}
// clean up memory
$html->clear();
unset($html);

?>

证明我拥有 betatv.net 我在首页添加了指向此问题的链接。

4

1 回答 1

0

这是一个很好的页面爬虫示例:

如何在 PHP 中制作一个简单的爬虫?

您只需要为它找到的每个链接使用您的代码。

此外,如果您拥有此页面,我敢打赌有更好的方法来查找所有图像,而不是从前端抓取它。

于 2013-02-10T11:05:48.433 回答