View Single Post
Old 06-01-2011, 06:46 AM   #2 (permalink)
core1024
The Wanderer
 
Join Date: May 2010
Posts: 19
Thanks: 1
core1024 is on a distinguished road
Default

Hi! This is due DST.
Just take a look in this example:
vlado@testing-pc:~$ php -r 'date_default_timezone_set("UTC"); echo ((strtotime("2010-12-13 23:00") - strtotime("2010-05-27 00:00"))/ 86400).chr(10);'
200.95833333333
vlado@testing-pc:~$ php -r 'date_default_timezone_set("Europe/Sofia"); echo ((strtotime("2010-12-13 23:00") - strtotime("2010-05-27 00:00"))/ 86400).chr(10);'
201
vlado@testing-pc:~$
core1024 is offline  
Reply With Quote