php
の非常に便利な strtotime メソッド
PHP では、1 か月前の日付を計算するなど、日付を計算する必要があることがよくあります。実際には、
+1 日 +1 週間がないことを確認して、すぐに 1 日後と 1 週間後の日付を見つけます。
echo strtotime("now"), "\n"; echo strtotime("10 September 2000"), "\n"; echo strtotime("+1 day"), "\n"; echo strtotime("+1 week"), "\n"; echo strtotime("+1 week 2 days 4 hours 2 seconds"), "\n"; echo strtotime("next Thursday"), "\n"; echo strtotime("last Monday"), "\n";1 か月前の日付を見つけるには、次のようにします。