Jump to content

Figuring out the beginning of the week with timestamps


mschrank99

Recommended Posts

How do I figure out when the current week starts with timestamps? I figured it out with months, for example:

 

$thisMonth = date(d) * 24 * 60 * 60;

$thisMonth = time() - $thisMonth;

$thisMonth = date(Ymd,$thisMonth);

 

This would give you a timestamp pertaining to the beginning of the month. I want to get one pertaining to the beginning of the week, which seems more complicated. For example, today falls in the second week of feburary. The beginning of the week was the 5th. I need to find some way to figure out on which date the first day of the given week falls.

 

Thanks,

 

Matthew

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.