freento
freento

Reputation: 2949

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.

Upvotes: 0

Views: 460

Answers (1)

Arun Killu
Arun Killu

Reputation: 14233

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

Upvotes: 4

Related Questions