1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PHPの日付処理

1
Posted at

公式 http://jp1.php.net/manual/ja/function.date.php

MySQLの日付書式で現在の日付を表示する

echo date('Y-m-d H:i:s');

2013-04-17 23:01:01 こんな感じ

1日前とかの計算

// UNIX timestampで返る
echo strtotime("-1 day");
// 基準日を設定できる
echo strtotime("-1 day", unix_timestamp);

// フォーマットする
echo date("Y-m-d", strtotime("-1 day"));
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?