I would like to find the date stamp of monday, tuesday, wednesday, etc. If that day hasn\'t come this week yet, I would like the date to be this week, else, next week. Thank
For some reason, strtotime('next friday') display the Friday date of the current week. Try this instead:
strtotime('next friday')
//Current date 2020-02-03 $fridayNextWeek = date('Y-m-d', strtotime('friday next week'); //Outputs 2020-02-14 $nextFriday = date('Y-m-d', strtotime('next friday'); //Outputs 2020-02-07