嗨,我正在尝试使用简单的 html dom 解析器解析一个无休止的分页(滚动提供更多项目)的网页。但我只能获取第一页的数据。如何获取其他网页的数据。
<?php
require 'simple_html_dom.php';
$html = file_get_html('http://www.flipkart.com/mobiles/pr?sid=tyy,4io&otracker=ch_vn_mobile_filter_Mobile%20Brands');
foreach ($html->find("div.pu-visual-section a") as $el) {
$product_url = "http://flipkart.com".$el->href;
echo $product_url;echo "<br>";
}
?>