0

phpスクリプトを実行して、CSVファイルから取得したイベントを挿入しています。イベントは私のカレンダーに正常に入力されていますが、約75のイベントが入力されると停止します。それが特定の量のイベントに制限されているのか、それとも私のコードの問題なのか、どんな考えでも。

助けてくれてありがとう!

  $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);
4

1 に答える 1

0

このスクリプトが停止するまでの実行時間はおよそどれくらいですか? php.ini ファイルの MAX_EXECUTION_TIME 設定を増やす必要があるのでしょうか? PHP が完了する前にタイムアウトになる可能性があります。

于 2010-02-04T15:08:42.313 に答える