如何格式化微软学术休息API返回的这种时间戳?
全部 我对微软学术休息 API 返回的日期字段感到困惑:
JSON 示例:
{ "AbstractSubmissionDate" : "/Date(-62135568000000-0800)/" }
我不认为这是标准的 GMT 格式,有人可以提供一些关于如何在 PHP 或 JS 中格式化此时间戳的指导吗? 。谢谢!
ALL
I am confused about the date field returned by microsoft academic rest api:
JSON Example:
{ "AbstractSubmissionDate" : "/Date(-62135568000000-0800)/" }
I don't think this is a standard GMT format, could someone please provide some guidance about how to format this timestamp in PHP or JS , it will be appreciated.Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
格式为自纪元以来的毫秒数,然后是 GMT 偏移量。
The format is milliseconds since the epoch, and then the GMT offset.