输出自定义年份的 年月(Y-m)格式的日期格式
程序员文章站
2022-03-17 11:12:14
...
function outputYm($start,$end) //$start开始年份 $end结束年份
{
for ($i=$start; $i < $end; $i++) {
for ($j=1; $j <=12; $j++) {
if ($j>12) {
$i++;
}
$arrMonth[] = array( $i.'-'.$j);
}
}
return $arrMonth;
}