【发布时间】:2019-01-02 05:29:58
【问题描述】:
解决这个问题有点麻烦
使用php-ews:jamesiarmes/php-ews
我正在尝试使用 Recurrence 预订活动并且工作正常
预订该会议后,我想获取该会议的所有事件,但可以弄清楚!有人可以帮忙吗?
感谢您的帮助
【问题讨论】:
标签: php exchangewebservices php-ews
解决这个问题有点麻烦
使用php-ews:jamesiarmes/php-ews
我正在尝试使用 Recurrence 预订活动并且工作正常
预订该会议后,我想获取该会议的所有事件,但可以弄清楚!有人可以帮忙吗?
感谢您的帮助
【问题讨论】:
标签: php exchangewebservices php-ews
因此,您无法获取该会议的所有事件。创建会议时,it doesn't create an individual item for each occurrence。但是,如果您请求查看某个时间范围内的日历事件,您可以查看该时间范围内的个别事件。如果你想得到一个单独的事件,你可以使用GetItem方法并传入一个OccurrenceItemIdwhich is a combination of the Recurring Master Item Id and the Index of the occurance that you want。如果你在你创建的递归主控上执行GetItem,你会得到像"How many occurances are there", "What's the first occurance" and "What's the last occurance" 这样的信息。
我希望这会有所帮助。我无法准确地告诉你如何使用jamesiarmes/php-ews,因为我使用并维护了一个更新且更易于使用的版本Garethp/php-ews
【讨论】: