我一直在尝试使用 ScraperWiki,昨天,我可以得到li
DOM 中所有 s 的列表。然而,现在我只运行了一次迭代。
这是我的代码
$html = 'www.blah...'
$dom = new simple_html_dom();
$dom->load($html);
print_r('Starting parse');
$events = $dom->find("ul.listing li");
print_r('Found '.count($events).' events'); // shows there are 26 nodes
foreach($events as $data){
// perform some processing then print to the console
我不是一个真正的 PHP 人,所以我可能会遗漏一些明显的东西。完整来源在https://scraperwiki.com/scrapers/days_of_the_year/