我可以检索Appointment.TimeZonefor项目:
PropertySet propertiesAll = new PropertySet(BasePropertySet.IdOnly, ..., AppointmentSchema.TimeZone, AppointmentSchema.StartTimeZone, ...);
ServiceResponseCollection<ServiceResponse> response = Exchange.LoadPropertiesForItems(items, propertiesAll);
Run Code Online (Sandbox Code Playgroud)
但不是Appointment.StartTimeZone哪个返回null.
Appointment.TimeZone是字符串,似乎是相当DisplayName的TimeZoneInfo对象,但不幸的是这似乎是在最终用户的语言(在我们的环境中我遇到通过交易所不同的约会返回不同的语言).因此,正确使用TimeZone字符串进行约会似乎很复杂/不可能.
主要问题是,StartTimeZone预约的结果是什么?
当请求PHP站点时,例如 somesite.php?a=some text # some more
目前似乎$_REQUEST["a"]返回字符串"some text",我怎么能得到"一些文本#更多".还有其他字符可以通过PHP获得类似的处理吗?