I have a table with timestamp values like:
2009-07-14 02:00:00
I need to display them at run time with 13 hours added, like:
2009-07-14 15:00:00
What's the simplest way to do this in PHP?
|
|
|||||
|
|
|
I know that
is smelly, but it will give you an idea.
But I suppose what you really want is to use time zones. Edit: igstan is correct, you should also mind the daylight saving time changes between those offsets. |
|||
|
|
|
There are lots of problems with Time Zones and Daylight Saving Time when using basic arithmetic for time calculations. The best solution is to rely on PHP's own date/time functions, like strtotime() or mktime(). I've wrote about DST problems on my blog.
|
||
|
|
|
|
you could use http://de3.php.net/manual/en/function.strptime.php to convert it to a unix timestamp. Then you could easily add 13*60*60 to that and use http://de3.php.net/manual/en/function.date.php to convert it back to a timestamp as you like. anotehr way would be via the explode function, but i think this might be more complicated because you have to look if days/month/years change and stuff |
||||||
|
|
|
Can you do the add as it comes out of the database?
(SQL Server) |
||||||
|
|
|
Here's something that you can refer from: http://www.daniweb.com/forums/thread85726.html |
||
|
|
|
You have a table with the timestamps? If it's a MySQL database, you could just do this in the database using addtime: If you are using the PHP Zend Framework, you could do something like:
Alternatively, you could do it using native PHP4 functions such as: [faster, less accurate: doesn't account for leap seconds/time zone changes etc]
or [slower, more accurate]
or, if you are using PHP 5 using the Datetime functions
|
||
|
|
|
|
|
||
|
|