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
PHP 7.1:
$next_date = new DateTime('next Thursday'); $stamp = $next_date->getTimestamp();
PHP manual getTimestamp()