Get date of nearest certain day of week

465 Views Asked by At

I'm using Zend_Date to create dates. How can I get date of the nearest further day of week, Monday, for example. I need to calculate it not only from now, but from any date.

Example. January, 31, Thursday.

I need to calculate date of the nearest Monday.

Result of function call should be February, 4.

1

There are 1 best solutions below

3
On BEST ANSWER

i dont know in zend but surely you can use date('Y-m-d',strtotime('next monday')); in php