我有这个:
$startdate = date("Y-m-d", strtotime('2015-' . $startmonth . '-01'));
但是,如何填补当年,我如何获得当年?
您可以使用 date('Y')
date('Y')
$startdate = date("Y-m-d", strtotime(date('Y') . '-' . $startmonth . '-01'));