dtcwehta624485 2013-05-14 13:18
浏览 92
已采纳

ICS文件动态时区问题[重复]

This question already has an answer here:

I am trying to generate ics file dynamically in PHP, where timezone is dynamic according to the location given. Everything works good but there is daylight time issue i.e it shows time difference of one hour or so. Now to solve this issue I have to use DAYLIGHT dynamically. but I don't know how to use it dynamically, or where from can I get TZOFFSETFROM and TZOFFSETTO offsets related with timezone given.

For Example:

    $timeZone = "America/Denver" // dynamically fetched from DB

      $ical = "BEGIN:VCALENDAR
";
      $ical .= "VERSION:2.0
";
      $ical .= "PRODID:-//LokalMotion//LokalMotion Events v1.0//EN
";
      $ical .= "CALSCALE:GREGORIAN
";
      $ical .= "METHOD:PUBLISH
";
      $ical .= "X-WR-CALNAME:LokalMotion Events
";
      $ical .= "X-MS-OLK-FORCEINSPECTOROPEN:TRUE
";
      $ical .= "BEGIN:VTIMEZONE
";
      $ical .= "TZID:{$timeZone}
";
      $ical .= "TZURL:http://tzurl.org/zoneinfo-outlook/{$timeZone}
";
      $ical .= "X-LIC-LOCATION:{$timeZone}
";
      $ical .= "END:VTIMEZONE
";
      $ical .= "BEGIN:VEVENT
";
      $ical .= "DTSTAMP:".date('Ymd\THis\Z')."
";
      $ical .= "DTSTART;TZID={$timeZone}:{$start_date}
";
      $ical .= "DTEND;TZID={$timeZone}:{$end_date}
";
      $ical .= "STATUS:CONFIRMED
";
      $ical .= "SUMMARY:{$title}
";
      $ical .= "DESCRIPTION:{$description}
";
      $ical .= "ORGANIZER;CN=Reminder:MAILTO:support@mysite.com
";
      $ical .= "CLASS:PUBLIC
";
      $ical .= "CREATED:{$start_date}Z
";
      $ical .= "LOCATION:{$location}
";
      $ical .= "URL:http://www.mysite.com
";
      $ical .= "SEQUENCE:1
";
      $ical .= "LAST-MODIFIED:".date('Ymd\THis\Z')."
";
      $ical .= "UID:{$title}-support@mysite.com
";
      $ical .= "END:VEVENT
";
      $ical .= "END:VCALENDAR";    

echo $ical;

Now how to use daylight dynamically according to the location, like location can be 'America/Caracas' .. etc

$ical .= "BEGIN:DAYLIGHT";
$ical .= "TZOFFSETFROM:{}"; //I need this dynamic
$ical .= "TZOFFSETTO:{}";//I need this dynamic
$ical .= "TZNAME:EDT";
$ical .= "DTSTART;TZID={$timeZone}:{$start_date}
";
$ical .= "RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=2SU";
$ical .= "END:DAYLIGHT";

Thanks in advance.

</div>
  • 写回答

2条回答 默认 最新

  • duande8497 2013-05-14 13:35
    关注

    Before converting times and date, you should set the correct timezone in PHP so the engine knows the time characteristics of the zone you are using:

    date_default_timezone_set('America/Mexico_City');
    $start_date = date('c', time());   // ISO date 8601 of "right now"
    $start_zone = date('O', time());   // TZOFFSETFROM format  of "right now"
    
    date_default_timezone_set('America/Denver');
    $to_zone = date('O', time());   // TZOFFSETTO of "right now"
    

    Hope this may help

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来