我已经下载了一个 PHP 脚本,它允许我为预定的网络研讨会生成可下载的 ICS。日期和时间设置为 WP ACF 发布。此外,WordPress 时区设置为 America/Los_Angeles。但我的时区位于菲律宾马尼拉。
这是代码。
// ACF Date
$wdate = get_sub_field('date'); // Tuesday, June 16, 2020
$stime = get_sub_field('start_time'); // 11:00 am
$etime = get_sub_field('end_time'); // 11:30 am
// Prepare Date using date_i18n()
// Starting DateTime
$st_gmt = $wdate.' '.$stime;
$st = get_date_from_gmt($st_gmt, 'Y-m-d H:i:s');
$date_start = date_i18n(get_option('date_format').' '.get_option('time_format'), strtotime($st));
// Output: June 16, 2020 11:00 AM
// Ending DateTime
$et_gmt = $wdate.' '.$etime;
$et = get_date_from_gmt($et_gmt, 'Y-m-d H:i:s');
$date_end = date_i18n(get_option('date_format').' '.get_option('time_format'), strtotime($et));
// Output: June 16, 2020 11:30 AM
每当我测试下载 .ics 日历文件时,它应该是June 17, 2020 2:00 AM & June 17, 2020 2:30 AM,但输出始终设置为June 16, 2020 7:00 PM & June 16, 2020 7:30 PM,因为我来自菲律宾马尼拉,而事件设置为洛杉矶。
这是实际 ICS 文件的输出。
BEGIN:VCALENDAR
VERSION:2.0
X-WR-TIMEZONE:America/Los_Angeles
PRODID:-//hacksw/handcal//NONSGML v1.0//EN
CALSCALE:GREGORIAN
BEGIN:VTIMEZONE
TZID:America/Los_Angeles
END:VTIMEZONE
BEGIN:VEVENT
LOCATION:Webinar Zoom
DESCRIPTION:This is my description
DTSTART:20200616T110000Z
DTEND:20200616T113000Z
SUMMARY:This is my summary
URL;VALUE=URI:
DTSTAMP:20200603T051015Z
UID:5ed6c0375fbf6
END:VEVENT
END:VCALENDAR
问题:当用户下载文件并添加到他们的日历时,如何输出 ics 文件以匹配用户时区?
千万里不及你