gpt4 book ai didi

PHP - 返回错误值的日期

转载 作者:行者123 更新时间:2023-11-29 04:29:17 25 4
gpt4 key购买 nike

我有一些代码,但它似乎无法正常工作。

我正在尝试将其放入适合我的数据库的正确格式。我正在执行以下操作:

date('Y-m-d H:i:s', strtotime('24/05/2011'));

但是每次我回应它,​​它都会返回:

1970-01-01 10:00:00

最佳答案

Dates in the m/d/y or d-m-y formats are disambiguated by looking at the separator between the various components: if the separator is a slash (/), then the American m/d/y is assumed; whereas if the separator is a dash (-) or a dot (.), then the European d-m-y format is assumed.

来自 strtotime 的文档

这应该可行

date('Y-m-d H:i:s', strtotime('05/24/2011'));

关于PHP - 返回错误值的日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5603046/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com