我正在练习使用simplehtmldom然而我遇到了一个小问题,我计划练习的网站上的分页只是javascript,当我关闭javascript时它打破了分页,所以它根本不显示({{ 3}})。到目前为止,这是我的代码:
<?php
include('simple_html_dom.php');
// Create DOM from URL
$html = file_get_html('http://www.asus.com/Motherboards/Intel_Platform_Products/');
// Find all article blocks
foreach($html->find('.hot-product-unit') as $article) {
$item['title'] = $article->find('.productslogan', 0)->plaintext;
$articles[] = $item;
echo "hello";
sleep(1);
}
print_r($articles);
?>
这个问题也导致整个代码中断,因为当没有javascript时,该网站也没有显示产品列表。
我如何解决这个问题?
感谢您的帮助, 马库斯