如何在日期变量内连接特定月份?

时间:2019-04-11 12:37:37

标签: php

我需要使用实际年份的月份

$mid = new DateTime('YYYY-07-01'); // this is where should work the actual year

echo $mid->modify('second monday')->format('Y-m-d');

1 个答案:

答案 0 :(得分:2)

致电date获取当前年份。

$mid = new DateTime(date('Y') . '-07-01');