PHPで数日後の日付を取得

// 本日の日時文字列をフォーマットを指定して取得
// YYYY-MM-DD hh:mm:ssの形式
$nowDateStr = date("Y-m-d H:i:s");
// 一ヵ月後のタイムスタンプを取得
$nextMonthTs = strtotime( "+1 month" );
// 一ヵ月後の日時をフォーマットを指定して取得
$nextMonthStr = date( "Y-m-d H:i:s", strtotime("+1 month");
// 一ヶ月前のタイムスタンプを取得
$prevMonthTs = strtotime( "-1 month" );
// 一ヶ月前と15日前のタイムスタンプを取得
$prevMonthTsH = strtotime( "-15 day", $prevMonthTs );
// 一ヶ月と15日前のタイムスタンプを
// YYYY-MM-DD hh:mm:ssの形式文字列で取得
$dateStr = date("Y-m-d H:i:s", $prevMonthTsH );
cocolog:@nifty


その他

タイトルとURLをコピーしました