我写了一个网络爬虫脚本代码是::
<?php
include_once('simple_html_dom.php');
$target_url = "http://jvlaunchcalendar.com/calendar/";
$html = new simple_html_dom();
$html->load_file($target_url);
$ret = $html->find('div[class=fc-event-inner');
//to print the caleder events similar code //works for other sites like flipcat.com
foreach($ret as $post)
{
echo $post.'<br />';
}
echo $html;// to print the calender of jvlaunchcalendar.com site
?>
此脚本适用于其他站点。但我想要http://jvlaunchcalendar.com/calendar/页面的所有日历事件,但这个脚本不显示任何事件给空日历。请帮我获取日历的事件。
问候。