How would I go about finding the unix timestamp of midnight of the previous Wednesday? My only approach would be to get the day index and day number of today, and subtract the difference, but I can think of several scenarios where this would fail, for example, early in a month before a Wednesday has happened.

I guess, more concisely, how do I find the date of the previous Wednesday?

Any help would be appreciated.

link|improve this question

Are you looking for midnight local time, or midnight UTC? – Greg Hewgill Jul 21 '09 at 20:19
feedback

3 Answers

up vote 4 down vote accepted

What about strtotime ?

$timestamp = strtotime("last Wednesday");

var_dump($timestamp);
var_dump(date('Y-m-d H:i:s', $timestamp)); // to verify

And you get this output :

int 1247608800
string '2009-07-15 00:00:00' (length=19)

which is indeed last wednesday, midnight.

link|improve this answer
feedback

It's easier than you might think...observe the awesome firepower of this fully operational battle station, er, I mean strtotime

$t=strtotime("last wednesday");

echo strftime("%d %b %Y %H:%M:%S", $t);

This will output

15 Jul 2009 00:00:00

Which, at the time of writing, is last wednesday :)

link|improve this answer
feedback

How "correct" do you want to be? If you want to be highly correct, you'll need to account for daylight savings time, time zones, leap years, etc. This means using a library and not just subtracting day indexes.

I am not currently doing PHP but I used to have good luck with the Pear libraries: here are the docs for the Calendar class

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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