Why does strtotime give different result in different timezone?

被刻印的时光 ゝ 提交于 2019-11-28 13:52:14
masnun

In short: time zone is considered because the Unix Epoch value is considered in GMT.

In broader sense 2011-09-19 00:00:00 comes to Bangladesh almost after 6 hours it is 2011-09-19 00:00:00 in GMT zone. Because of this gap, another 21600 seconds have passed in the GMT zone when the same date appears in BD.

Since the calculation is done in respect to the GMT, you have to add these 21600 seconds to get the actual difference.

strtotime gives different results in different timezones because it takes timezones into account...

From strtotime's manual:

The function expects to be given a string containing an English date format and will try to parse that format into a Unix timestamp (the number of seconds since January 1 1970 00:00:00 UTC)

This function will use the TZ environment variable (if available) to calculate the timestamp. Since PHP 5.1.0 there are easier ways to define the timezone that is used across all date/time functions. That process is explained in the date_default_timezone_get() function page.

Have a look at mktime().

Since PHP 5.1, you can use date_default_timezone_set before calling mktime or strtotime.

From the PHP manual:

This function will use the TZ environment variable (if available) to calculate the timestamp. Since PHP 5.1.0 there are easier ways to define the timezone that is used across all date/time functions. That process is explained in the date_default_timezone_get() function page.

http://php.net/manual/en/function.strtotime.php

Use date_default_timezone_set before calling date/time functions to choose which time zone you want to work in.

http://www.php.net/manual/en/function.date-default-timezone-set.php

From PHP docs on strtotime:

This function will use the TZ environment variable (if available) to calculate the timestamp. Since PHP 5.1.0 there are easier ways to define the timezone that is used across all date/time functions. That process is explained in the date_default_timezone_get() function page.

Try setting your own time zone.

manwink

i think probably there will be one time of each php programmer that this function will make him wants to really understand how actually php works with date and time functions.

funny this function when you try something like...err...for example, assume that today at this very moment is July 11th, 2012 at 13:00:00 (2012-07-11 13:00:00) and then you try strtotime to find exactly the same moment of the day but for tomorrow:

$x = strtotime('2012-07-12 13:00:00');

$y = strtotime('+1 Day');

$z = $x-$y;

$x and $y of the above first 2 lines will not return the same thing even you ignore the minute and second counts but $z will be around 25200 or around 7 hours in the difference between this 2 lines if your sever is in somewhere of the USA that the GMT is -5 hours but you browser calls this function from berlin in summer where the GMT is +2 hours... LOL now you can get the idea how php work with this function ;)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!