将 .ini 文件更改为正确格式后,Wamp 服务器日期不正确?
在我的 php.ini 中,我已将时区更改为欧洲/伦敦。
虽然日期仍然是
2028/08/11,
但时间是正确的,这是怎么回事以及我该如何纠正它。
In my php.ini I have changed the timezone to Europe/London.
Although the date still echo at
2028/08/11
The time is correct though, how is this and how can I correct it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的结果:
2028/08/11
包含正确的日期,但在开头附加了
20
。如果您的日期格式正确,您或其他操作必须回显20
。正如您的评论中所述,这是 MySQL 错误的结果。
Your result:
2028/08/11
contains the correct date, but has a
20
appended to the beginning. If your date formatting is correct, you or another operation must be echoing20
.As stated in your comment, this was the result of a MySQL error.