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.
PayPals IPN 以这种格式发送日期08:29:40 Aug 06, 2012 PDT
08:29:40 Aug 06, 2012 PDT
当我运行它时,strtotime()我得到了这个响应1344266980
strtotime()
1344266980
当这通过时,date()我得到2012-08-40 16:29:40.
date()
2012-08-40 16:29:40
发生了什么,我该如何解决。
时区在 PHP 中设置为Europe/London.
Europe/London
谢谢。
您的日期格式字符串一定是错误的。你有没有机会date像这样打电话:
date
date("Y-m-s H:i:s",$time)
如果是这样,它应该是Y-m-d- 很可能是一个错字。
Y-m-d
我这么说的原因是因为它根本不可能date()返回40天数。
40