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.
第三方 API 正在输出:“1373762187.198”作为有效日期时间。
当通过 PHP 的日期函数传递时,即使我知道它所附加的对象已经超过一周,我也会得到今天的日期。
任何想法如何进行正确的对话?
只需用整数转换去掉小数,然后将其传递给date(或者你需要毫秒吗?)
date
date("...", (int)$date);