Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のコードがあります。
$date = date("Y-m-d");
これにより、 が得られ2013-10-26ます。
2013-10-26
必要なのは、2 か月前の日付を取得することです。したがって、この例では、 になります2013-08-26。
2013-08-26
どうすればこれを達成できますか?
DateTime example:
echo date_create()->modify('-2 month')->format('Y-m-d');
Demo.