Hello experts,
I hope that someone can guide me in the rigth direction on how I can get the date for every 3rd friday each month.
I also want to calculate the days remaining till next 3rd friday
Thanks a lot Tor
Consider the use of [man]strtotime/man, e.g.,
echo date('Y-m-d', strtotime('this friday +2 weeks', strtotime('1 March 2008')));
laserlight wrote:Consider the use of [man]strtotime/man, e.g., echo date('Y-m-d', strtotime('this friday +2 weeks', strtotime('1 March 2008')));
Thanks a lot mate, issue solved 🙂