|
|
|
PHP Send outlook event by ical ปัญหาเวลาไม่ตรงกับการส่ง |
|
|
|
|
|
|
|
กำหนด TZID
https://icalendar.org/iCalendar-RFC-5545/3-2-19-time-zone-identifier.html
ตัวอย่าง
Eluceo
$calendar = new Calendar();
$calendar
->addTimeZone(TimeZone::createFromPhpDateTimeZone(new PhpDateTimeZone('Asia/Bangkok')))
->addTimeZone(TimeZone::createFromPhpDateTimeZone(new PhpDateTimeZone('Europe/London')))
;
Sabre
$timezone = new \DateTimeZone('Asia/Bangkok');
$event = new \Sabre\VObject\Component\VCalendar();
$event->add('DTSTART', $timezone->getDateTime());
$event->add('DTEND', $timezone->getDateTime());
$event->add('TZID', 'Asia/Bangkok');
$event->save('event.ics');
|
|
|
|
|
Date :
2023-05-31 19:14:19 |
By :
009 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|