-
-
/** - * 特定の期間の開始月から終了月までの月配列を生成します
- * @paramknown_type $start
- * @paramunknown_type $end
- * url: http://bbs.it-home.org
- */
- function getMonthArr($start, $end)
- {
- $start = empty($start) ? date('Y- m',strtotime('-1 month')) : $start;
- $end = empty($end) ? date('Y-m') : $end;
//タイムスタンプに変換します
- $st = strtotime($start.'-01');
- $et = strtotime($end.'-01');
$t = $st; $i = 0;
- while($t {
- /*
- 各月の合計秒数を累積する計算式: 前月 1 日のタイムスタンプの秒数から、現在の月の秒タイムスタンプ秒
- */
- $d[$i] = trim(date('Y-m',$t),' ');
- $t += strtotime('+1 month', $ t)- $t;
- $i++;
- $d を返す
- }
- ?
-
-
-
;
|