2010-02-04 53 views
0

我'運行一個PHP腳本來插入我從CSV文件中取的事件。事件在我的日曆中成功輸入,但在輸入約75個事件後停止。任何想法,如果它僅限於一定數量的事件或它是我的代碼中的問題。我可以通過Google日曆數據API輸入事件的限制嗎?

在此先感謝幫助我!

$event->title = $service->newTitle($title); 

    $event->where = array($service->newWhere("Red Ball Internet Centre")); 


    $service->newContent($content); 



    // Set the date using RFC 3339 format. 

    $tzOffset = "-04"; 



    $when = $service->newWhen(); 

    $when->startTime = "{$startDate}T{$startTime}:00.000{$tzOffset}:00"; 

    $when->endTime = "{$endDate}T{$endTime}:00.000{$tzOffset}:00"; 

    $event->when = array($when); 

    // Upload the event to the calendar server 

    // A copy of the event as it is recorded on the server is returned 
    switch($rink) 
    { 
    case"Rink A": 
     $uri = "http://www.google.com/calendar/feeds/qsqivvbvdm7o4ibrmt9gfu301g%40group.calendar.google.com/private/full"; 
    break; 
    case"Rink B": 
     $uri = "http://www.google.com/calendar/feeds/dcr864c3orqj264mufl1t3slt8%40group.calendar.google.com/private/full"; 
    break; 
    case"Rink C": 
     $uri = "http://www.google.com/calendar/feeds/bira8i123uuqovhn5kuk9caqnk%40group.calendar.google.com/private/full"; 
    break; 
    case"Rink D": 
     $uri = "http://www.google.com/calendar/feeds/11a8m100ccjhms971kc33app4g%40group.calendar.google.com/private/full"; 
    break;     
    } 

    $newEvent = $service->insertEvent($event, $uri); 

回答

0

該腳本在停止之前運行了多長時間?難道你需要增加php.ini文件中的MAX_EXECUTION_TIME設置嗎?在它有機會完成之前,PHP可能會超時。

+0

ohhhh ...沒有想到這一點。讓我試試這個! – 2010-02-04 15:14:50

+0

這工作!非常感謝你 – 2010-02-04 16:29:07

相關問題