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.
mysqlの日付を更新できません
しようと、
日付形式を挿入すると、mysqlは0000-00-00のままになりますdate('d-m-Y')
date('d-m-Y')
ありがとうございました
代わりにこれを使用してください:
date('Y-m-d')
また、現在の時刻/日付を使用したいだけで、MySQL サーバーが Web サーバーと同じタイムゾーンにある場合は、代わりにSQL で使用できます。NOW()
NOW()