各月の日付範囲を表示しようとしています。
例えば、
2013 年 11 月 -- 2013-11-01 - 2013-11-30 //11 月の月
2013 年 12 月 -- 2013-12-01 - 2013-12-31 //12 月の場合
2013 年 1 月 -- 2014-01-01 - 2014-01-31 // 2014 年 1 月の場合
2014年12月まで
PHP コード:
$currentmonth = date('n');
$monthstoloop = $currentmonth + 13;
for ($m=$currentmonth; $m<=$monthstoloop; $m++) {
$month = date('F', mktime(0,0,0,$m, 1, date('Y')));
$year = date('Y', mktime(0,0,0,$m, 1, date('Y')));
echo $month." ".$year;
}
年のすぐ横に月の範囲を表示する方法が見つかりません。提案してください。