私は現在の月の開始日と終了日を表示するために次のコードを使用しています。PHPの指定した日付範囲の月の開始日と終了日を取得する方法
function firstOfMonth() {
return date("m/d/Y", strtotime(date('m').'/01/'.date('Y').' 00:00:00'));
}
function lastOfMonth() {
return date("m/d/Y", strtotime('-1 second',strtotime('+1 month',strtotime(date('m').'/01/'.date('Y').' 00:00:00'))));
}
$date_start = firstOfMonth();
$date_end = lastOfMonth();
echo $date_start;
echo $date_end;
質問:例:について
を指定した日付の範囲内のすべての月の開始日と終了日を取得する方法:
function daterange($startdate,$enddate)
{
...
...
...
}
期待される結果は、開始日と終了日の配列で月の範囲は$startdate
と$enddate
の間です
これを行う方法のヘルプを私に....
何を試してみましたか?あなたに困っている何か具体的なものはありますか? – hughes
あなたは '日付'を知っています。あなたは 'strtotime'を知っています。また、PHPでdaterangesを取得する方法については、何百もの質問が必要です。それで問題は何ですか? – Gordon