My PHP Advent article just got published. It's a list of best practices around dealing with dates and times in PHP. Have a read and tell me what you think. Also, be sure to follow @phpadvent or subscribe.
Interesting news today. The Olson database, which is used in countless operating systems and other software (including PHP) has been shut down due to a Copyright claim.
Details, which I won't repeat here can be found on Stephen Colbourne's blog.
Just started checking out PHP 5.2's DateTime object. Its great to have a 'standard object' for dates.. Lots of the frameworks out there all define their own date class, perhaps this can help creating more generic interfaces.
Its quite hard to find the documentation though. I'm looking for a way to create a DateTime object based on a unix time, but this seems to be the only way:
- <?php
-
- // unix time
- $unix = time();
-
- $dateTime = new DateTime(date(DATE_ATOM,$unix));
-
- ?>
Which is a pretty nasty hack, because the strtotime()-like parsing is unnecessary because the actual date is likely stored as a number anyway..
Update: kore pointed out the proper way to do this in the comments.
