Well, found out that I built a relatively large program built on top of DateTime, only to find most of what I used there got added in PHP 5.3. The server I have to deploy to does not run 5.3. (And it's a Ubuntu Hardy (8.04) box which doesn't have a 5.3 package in the main repo, and I'm not allowed to install anything not in the main repos on that box...)

  1. Is there some way to get a copy of the date and time function reference as was current for 5.2.4?
  2. What is the best way to pass dates around? ints containing unix epoch times?
link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

When passing data around, I prefer to use unix timestamps. If you have a different representation, you can use strtotime() to convert it.

There are a few functions that come in handy when working with dates & times. it looks like a lot of what is done w/ the DateTime object can be handled with some combinations of these methods:

also, just a clarification on your terminology, the unix epoch is the moment all unix timestamps count from, which is midnight, Dec 31, 1969.

link|improve this answer
What type should I generally use to pass dates and times around though? – Billy ONeal Sep 24 '10 at 21:21
@Billy, realized I didn't read the question carefully, updated my answer. – GSto Sep 24 '10 at 21:22
It was kind of poorly written. I've edited it a bit :) Thanks :) – Billy ONeal Sep 24 '10 at 21:23
feedback

Always using unix timestamps as int for date/time no matter of mysql version.

link|improve this answer
What does MySQL have to do with my question? And if you're in PHP 5.3, why not use the DateTime object? – Billy ONeal Oct 13 '10 at 15:45
Oops.. sorry, I wasn't slept for more then a day when I read your question and now I see that I read Mysql instead PHP :)) – JohnZ Oct 14 '10 at 7:15
But anyway:), I still prefer unix timestamps for working with date/time, and just using date() for displaying it when needed. – JohnZ Oct 14 '10 at 7:18
DateTime uses unix timestamps internally anyway. It just additionally hangs methods off the value. – Billy ONeal Oct 14 '10 at 13:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.