私はScraperWikiを実験していましたが、昨日、DOMのすべてのli
のリストを取得できました。しかし今、私は1回の反復だけを実行します。1回の繰り返しの後にForeach loop dieing
これは、私が何かを明らかに欠落している可能性がありので、私は本当にPHPの男じゃない私のコード
$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
です。完全なソースがリンクされたソースでhttps://scraperwiki.com/scrapers/days_of_the_year/
'print_r'は配列とオブジェクトを出力するためのものです。文字列の出力には使用しないでください。 'print_r($ events)'を使って '$ events'の構造を調べてみてください。 – MrCode