phpzend-frameworkmagentozend-date

Get date of nearest certain day of week


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.


Solution

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