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.
次のような日付を作成するより簡単な方法はありますか?
echo date('Y-m-d', mktime(0, 0, 0, date("m"), date("d")+3, date("Y")));
あなたが助けることができればありがとう。
strtotime()はどうですか:
date('Y-m-d', strtotime('+3 days'));