私はどのように私はこのコードを単純化し、二つの変数月と年にそれを分けるのですか?スプリット
2016から2017
に月と年を生成します。このコードを持っていますか$start = $month = strtotime('2016-01-01');
$end = strtotime('2017-12-31');
while($month <=$end)
{
echo date('F Y', $month), PHP_EOL;
echo "<br />";
$month = strtotime("+1 month", $month);
}
が答え – gtroop