使用Web Scraping HTML DOM Parser从网站获取数据

时间:2017-03-19 08:12:24

标签: php html web-scraping

我想提出所有问题&本网站的图片。所以我尝试了这个代码以及一个html dom解析器。多个div出错。我怎样才能获得本网站的所有图片和问题?

include('simple_html_dom.php');

$html = file_get_html('http://www.vonvon.me');

$imgname = '';

foreach($html->find('div[class=quiz-item ng-scope]') as $img)
{
    echo $img->src.'<br/>';
    $imgname = $img->src;
}

echo $nimname = $html->find('a.quiz-item ng-scope.div.desc ng-binding')->innertext;

0 个答案:

没有答案