News Feed
Jobs Feed
Sections




News Archive
feed this:

Leonid Mamchenkov' Blog:
PHP date() and 53 weeks
February 11, 2010 @ 12:12:09

In doing some work with data and date ranges, Leonid Mamchenkov came across something strange about the "weeks" that the date and time functions in PHP work on. Sometimes, there's not always 52 weeks in a year.

With code as simple and straight-forward as [our example], you'd probably look for the problem elsewhere. Maybe it's your statistical data which is wrong, or the graph is not generated properly. But the problem is here.

How many weeks do you think there are in a year? A common knowledge says 52. However, if you think for a moment about how the weeks are related to the year, you'll realize that the first and last weeks don't necessary start and end at the edge of the year.

So, when using the date function, you might not get quite what you were expecting. It works more correctly and can include the extra "week" if there's enough of an overlap. The "W" parameter (for "week") works off of the ISO-8601 week number for the year, not the general calendar weeks.

1 comment voice your opinion now!
week datetime iso8601 date


Derick Rethans' Blog:
Calculating start and end dates of a week
September 06, 2006 @ 07:03:24

With just a quick handy code snippet posted on his blog today, Derick Rethans shares these two lines to help grab the start and end dates of a week in question.

A friend asked "How do I calculate start (monday) and end (sunday) dates from a given week number for a specified year?" Instead of having to come up with your own algorithm you can simply do the following in PHP 5.1 and higher.

The code makes use of the ISO8601 datetime functionality to grab the correct value from a strtotime command. Derick also briefly explains how it all works.

0 comments voice your opinion now!
start date end week strtotime iso8601 datetime format start date end week strtotime iso8601 datetime format



Community Events











Don't see your event here?
Let us know!


example development zendframework2 introduction language interview opinion functional object code community composer unittest release framework tool testing series conference podcast

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework