简单的html dom解析器和分页

时间:2016-11-05 17:30:52

标签: html parsing dom

我使用简单的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 />';

?>

0 个答案:

没有答案