我想知道是否有可能使此代码搜索该网站的每个页面,以便从所有页面中提取每个图像 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 我在首页添加了指向此问题的链接。