Stack Exchange API 中的日期格式

发布于 2024-10-30 19:25:31 字数 353 浏览 1 评论 0原文

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

"down_vote_count": 0, 
  "last_activity_date": 1300830790, 
  "creation_date": 1300829790, 

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

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

谢谢。

When I query Stack Overflow (using it's API) to get some data (questions/answers/etc) I get the following JSON response:

"down_vote_count": 0, 
  "last_activity_date": 1300830790, 
  "creation_date": 1300829790, 

The last_activity_date is a 10 digit number corresponding to some date in 1970. when I test today's timestamp (in Java if it's important) I get a 13 digit number.

What is the format of the date timestamps in the responses I get? How do I translate it to regular Unix timestamp?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

两个我 2024-11-06 19:25:31

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

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

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

it is in the "d M Y h:i" format. so if you're using php you can do :

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

//and call it like
$testdate = 1344855907;
echo sanitizeDate($testdate);
不必你懂 2024-11-06 19:25:31

我知道这是一篇旧帖子,但 "last_activity_date": 1300830790 实际上是 Unix 时间戳,它翻译为 Tuesday, March 22, 2011 9:53:10 PM
这个网站 https://www.epochconverter.com/ 有一个快速转换器和一些用于翻译的代码。

I know it is an old post but the "last_activity_date": 1300830790 is actually a Unix timestamp, and it translates to Tuesday, March 22, 2011 9:53:10 PM
This site https://www.epochconverter.com/ has a quick converter and some code to do the translation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文