标签: php
我需要使用实际年份的月份
$mid = new DateTime('YYYY-07-01'); // this is where should work the actual year echo $mid->modify('second monday')->format('Y-m-d');
答案 0 :(得分:2)
致电date获取当前年份。
date
$mid = new DateTime(date('Y') . '-07-01');