我使用简单的html dom解析器来解析网站,我遇到了处理网站分页的问题。 我的实际代码是解析1页,我想解析所有页面:
<?php
include ('simple_html_dom.php');
$url = file_get_html('http://www.ecran-portable.net/268-ecrans-pc-portable');
foreach($url->find('.product-name') as $produit)
echo $produit->plaintext . '<br />';
?>