Get the date of next monday, tuesday, etc

前端 未结 10 1145
轻奢々
轻奢々 2020-11-29 02:24

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

10条回答
  •  迷失自我
    2020-11-29 03:12

    PHP 7.1:

    $next_date = new DateTime('next Thursday');
    $stamp = $next_date->getTimestamp();
    

    PHP manual getTimestamp()

提交回复
热议问题