Google日历输入问题

时间:2019-06-23 07:38:59

标签: php google-calendar-api

我正在使用Google Calendar API。

在我的系统中使用Google API:

  1. 我正在特定时间段创建约会。这是工作 一直都很好。

  2. 我正在使用+01:00(阿姆斯特丹时间)

  

有时会持续2个小时

代码:

<?php
  $event_arr = array(
    'summary' => 'Custom - Test',
    'description' => "Overview times",
    'start' => array(
          'dateTime' => "2019-06-23T10:00:00",
          'timeZone' => 'Europe/Amsterdam',
         ),
        'end' => array(
          'dateTime' => "2019-06-23T12:00:00",
          'timeZone' => 'Europe/Amsterdam',
        ),
        'singleEvent' => true,
    );
?>
  

在某些情况下,在Google日历中的12:00:00到02:00:00创建广告位   而不是10:00:00到12:00:00。

0 个答案:

没有答案