小编Mus*_*miz的帖子

无法通过Exchange 2007 SP1上的EWS托管API检索Appointment.StartTimeZone

我可以检索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是字符串,似乎是相当DisplayNameTimeZoneInfo对象,但不幸的是这似乎是在最终用户的语言(在我们的环境中我遇到通过交易所不同的约会返回不同的语言).因此,正确使用TimeZone字符串进行约会似乎很复杂/不可能.

主要问题是,StartTimeZone预约的结果是什么?

exchange-server exchangewebservices ews-managed-api

6
推荐指数
1
解决办法
2454
查看次数

请求字符串中的#字符

当请求PHP站点时,例如 somesite.php?a=some text # some more

目前似乎$_REQUEST["a"]返回字符串"some text",我怎么能得到"一些文本#更多".还有其他字符可以通过PHP获得类似的处理吗?

php

1
推荐指数
1
解决办法
610
查看次数