PHP-“下个月第一天”的时间戳在09:00

时间:2019-05-01 10:02:33

标签: php time

我需要能够在特定时间(例如09:00)获得“下个月的第一天”。

我正在使用当前函数来获取下个月的第一天:

strtotime('first day of next month')

但是我还需要为此设置一个特定时间。 以上将为我提供运行命令的时间。

1 个答案:

答案 0 :(得分:0)

    <?php
  $datetime=(new DateTime('first day of next month'))->format('Y-m-d 9:00:00'); ?>

OR

     <?php
       $datetime=(new DateTime('first day of this month'))->format('Y-m-d 9:00:00');

      $time= strtotime($datetime);
     //format('jS, F Y');
      $startDate = time();
       echo "First Day of Next Month :=>".  $result = (date('Y-m-d H:i:s', strtotime('+1 month', $time)));

   ?>