ホームページ >バックエンド開発 >PHPチュートリアル >phpは前日、前月、前年の時刻を取得します
前日の時刻を取得:
$mytime= date("Y-m-d H:i:s", strtotime("-1 day"));
$mytime= date("Y-m-d H:i:s", strtotime("-3 day"));
$mytime= date("Y-m-d H:i:s", strtotime("-1 month"));
$mytime= date("Y-m-d H:i:s", strtotime("-3 month"));
$mytime= date("Y-m-d H:i:s", strtotime("-1 hour"));
$mytime= date("Y-m-d H:i:s", strtotime("-1 year"));