Jump to content

date/week


Roee

Recommended Posts

Hi,

 

without DateTime() class, in "native PHP" heres a bit complexer but interesting eg

 

date('Y-m-d', strtotime('2010W30')); // 2010/30th week's monday

$sw = strtotime('2010W30');
date('Y-m-d', mktime(0, 0, 0, date('m', $sw), date('d', $sw) + 6, date('Y', $sw))); // prev week's end

Link to comment
https://forums.phpfreaks.com/topic/208958-dateweek/#findComment-1091454
Share on other sites

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.