gpt4 book ai didi

timestamp - Stack Exchange API 中的日期格式

转载 作者:行者123 更新时间:2023-12-03 07:57:43 25 4
gpt4 key购买 nike

当我查询 Stack Overflow(使用它的 API)以获取一些数据(问题/答案/等)时,我得到以下 JSON 响应:

"down_vote_count": 0, 
"last_activity_date": 1300830790,
"creation_date": 1300829790,
last_activity_date是一个 10 位数字,对应于 1970 年的某个日期。当我测试今天的时间戳时(如果它很重要,在 Java 中)我得到一个 13 位数字。

我得到的响应中日期时间戳的格式是什么?如何将其转换为常规 Unix 时间戳?

谢谢。

最佳答案

它在 "d M Y h:i"格式。所以如果你使用 php 你可以这样做:

function sanitizeDate($date){
return date('d M Y h:i', $date);
}

//and call it like
$testdate = 1344855907;
echo sanitizeDate($testdate);

关于timestamp - Stack Exchange API 中的日期格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5570831/

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