mschrank99 Posted February 10, 2007 Share Posted February 10, 2007 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 Link to comment https://forums.phpfreaks.com/topic/37945-figuring-out-the-beginning-of-the-week-with-timestamps/ Share on other sites More sharing options...
Jessica Posted February 10, 2007 Share Posted February 10, 2007 If you're counting Sunday as the beginning of the week, check if it's already sunday today using date(), and if it's not use $sunday = strtotime("last Sunday"); Link to comment https://forums.phpfreaks.com/topic/37945-figuring-out-the-beginning-of-the-week-with-timestamps/#findComment-181602 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.