我正在练习使用 simplehtmldom,但是我遇到了一个小问题,我打算练习的网站上的分页只是 javascript,当我关闭 javascript 时它会破坏分页,所以它根本不显示(http://www .asus.com/uk/Motherboards/Intel_Platform_Products/)。到目前为止,这是我的代码:
<?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 时,该站点也没有显示产品列表。
我将如何解决这个问题?
谢谢你的帮助,马库斯