PHP: get next date based on fixed base date
问题 is there a way in PHP to get the next date(s) using a 4-week interval from a given date ? Example: My start date is Friday, Jan 03, 2014 and my interval is every 4 weeks from that date. What I am looking for is the next date (or dates, if possible) from the current date that matches this 4-week interval. In the above example this would be Friday, May 23, 2014 (then June 20, 2014, July 18, 2014 etc.). I know I can get the current date as follows: $today = date('Y-m-d'); and I could probably