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-00date('d-m-Y')
date('d-m-Y')
谢谢你
改用这个:
date('Y-m-d')
此外,如果您只想使用当前时间/日期并且您的 MySQL 服务器与您的 Web 服务器位于同一时区,您可以在 SQL中使用NOW()。
NOW()