2008年3月13日木曜日

PHPの DateTimeオブジェクトの簡易リファレンス

あまり使わない部分は省略。


コンストラクタ
※パラメータの$strTimeは日時を表す文字列。(参考:PHPの日付操作はDateTimeが簡単
 $dateTime = new DateTime($strTime);
  または
 $dateTime = date_create($strTime);


日時を加減算する
※パラメータの$strTimeは日時の加減算表す文字列。(参考:PHPの日付操作はDateTimeが簡単
 $dateTime->modify($strTime);
  または
 date_modify($dateTime, $strTime);


日付をセットする
 $dateTime->setDate($year, $month, $date);
  または
 date_date_set($dateTime, $year, $month, $date);


時刻をセットする
 $dateTime->setTime($hour, $minute, [$second]);
  または
 date_time_set($dateTime, $hour, $minute, [$second]);


指定したフォーマットの文字列にする
※パラメータの$strFormatはdate()などで使うフォーマット。(例:"Y/m/d H:i:s")
 $dateTime->format($strFormat);
  または
 date_format($dateTime, $strFormat);

0 件のコメント:

ブログ アーカイブ

tags