例如,我可以像这样键入一个函数:
echo findtimeinworld('<some way to format Sydney, Australia>'); // The current time in Sydney, Australia in a timestamp
这样的功能怎么可能?
另外,请注意我在这里使用托管服务器,所以服务器时间可能是任何东西。
对尽可能小的函数进行奖励投票。
您将需要一个包含要查询的每个城市的时区信息的数据库,然后对您当前的服务器时间进行时区调整。
这里有一个时区数据库。看起来它带有一些 C 代码,用于将时区信息转储到一个文件中,希望该文件可以导入到数据库表中。一旦你有了它,你应该能够在一年中的任何时候为世界上任何一个城市调整时区。
检查此网络服务,这有助于实现城市时区和当地时间。
http://www.earthtools.org/webservices.htm#timezone
这是它的例子(纽约)。
http://www.earthtools.org/timezone-1.1/40.71417/-74.00639
请注意,有一些使用限制:
您每秒对这些 Web 服务的请求不得超过一个。
如果您认为需要在任何 24 小时内发出另一个相同的请求,则必须缓存结果。
您必须在不再需要时删除任何缓存数据,无论如何在 14 天后。
date_default_timezone_set('Europe/London');
date_default_timezone_get();
试试这个。
日期和时间函数根据服务器工作,因此您必须在调用任何日期和时间函数之前手动设置时区。并且由于您需要一个根据传递的参数显示时间的函数,因此有效的方法将是根据传递的参数设置时区。为此,您将需要一个数据库,或者可能需要一个时区数组(数组太大,有数百个索引)并相应地匹配它们。
下面是一个简短的伪代码
echo findtimeinworld('COUNTRY/CITY'); //findtimeinworld('Australia/Melbourne');
function findtimeinworld($suppliedTZ){
//Match $suppliedTZ with timezone database for complete match
//if match found
date_default_timezone_set('returned timezone');
//else if match not found
//match for first part ex Australia and limit the result to 1
//if match found
date_default_timezone_set('first returned timezone');
//else if match not found
date_default_timezone_set('your default timezone');
//put date and time functions here
}