ICS文件中的错误时间

时间:2015-11-30 13:46:15

标签: php outlook icalendar

我正在开发一个PHP工具来创建一个将通过邮件发送的ICS文件。

创建文件后,我尝试在Outlook 2016或iCalendar(Apple)中添加它。除开始时间和结束时间外,所有信息均正确无误。它们偏离一小时。

埃克塞尔:

BEGIN:VCALENDAR
METHOD:PUBLISH
VERSION:2.0
PRODID:-//Communication Maker
CALSCALE:GREGORIAN
BEGIN:VEVENT
DTSTART;TZID=Europe/Zurich:20151201T150000Z
DTEND;TZID=Europe/Zurich:20151201T180000Z
UID:565c50b5ca7d9
LOCATION:Location
SUMMARY:Title
DESCRIPTION:Content
END:VEVENT
END:VCALENDAR

以下是文件信息:

开始时间:01/12/2015 @ 15:00:00

结束时间:2015年12月1日@ 18:00:00

时区:UTC +01:00(欧洲/苏黎世)

在这里,Outlook和iCalendar上的结果:

开始时间:01/12/2015 @ 16:00:00

截止时间:2015年12月1日@ 19:00:00

我现在已经搜索了4天,但我找不到使用正确数据制作活动的答案。

如果需要,我可以为您提供更多代码(HTML或PHP类)。

有我的班级:

class ICS {

    private $sSaveDir        = './icsFiles/';
    private $sIcsContent     = '';
    private $sIcsDateFormat  = 'Ymd\THis\Z';

    public function __construct($sTitle = null, $sLocation = null, $sUrl = null, $sTimezoneValue = null, $sEventText = null, $sDateS = null, $sTimeS = null, $sDateE = null, $sTimeE = null) {

        // Timezone par défaut
        date_default_timezone_set('UTC');

        // Génération de l'ID unique
        $sUniqId = uniqid();

        // Construction du array
        $aIcsContent = array(
            "BEGIN:VCALENDAR",
            "METHOD:PUBLISH",
            "VERSION:2.0",
            "PRODID:-//Communication Maker",
            "CALSCALE:GREGORIAN",
            "BEGIN:VEVENT",
            "DTSTART;TZID=".$sTimezoneValue.":".date($this->sIcsDateFormat, strtotime($sDateS." ".$sTimeS)),
            "DTEND;TZID=".$sTimezoneValue.":".date($this->sIcsDateFormat, strtotime($sDateE." ".$sTimeE)),
            "UID:".$sUniqId,
            "LOCATION:".$sLocation,
            "SUMMARY:".$sTitle,
            "DESCRIPTION:".$sEventText,
            "END:VEVENT",
            "END:VCALENDAR"
        );

        // Array => string
        $this->sIcsContent = implode(PHP_EOL, $aIcsContent);

        // Créer et ouvre le fichier en écriture seule
        if($oIcsFile = fopen($this->sSaveDir.'event_'.$sUniqId.'.ics', 'w')) {

            // Inscrit les données de l'événement dans le fichier
            fwrite($oIcsFile, $this->sIcsContent);

            // Ferme le fichier proprement
            fclose($oIcsFile);

            echo 'true';
        }
        else {

            echo 'false';
        }

    }

}

感谢您的帮助。我真的需要它。

1 个答案:

答案 0 :(得分:1)

您的ICS文件说该时间是01/12/2015 @ 15:00:00 UTC时区。它表示要显示苏黎世时间。苏黎世为UTC + 100所以在苏黎世时间(中欧时间)显示时间为01/12/2015 @ 16:00:00是正确的。

Z末尾的20151201T150000Z表示"祖鲁时间,"这是(大致)UTC时间的另一个名称。

要在苏黎世时间而不是UTC中指定事件开始的日期/时间,只需从时间中删除Z,如下所示:20151201T150000

如果您希望坐在UTC + 100中的人看到15:00,而坐在UTC + 200中的人看到16:00作为时间,则应指定UTC时间。在这种情况下,您可以将时间设置为20151201T140000Z,因为这是UTC等效于01/12/2015 15:00:00 UTC + 100.