这是什么类型的日期/时间格式?

发布于 2024-12-29 19:59:57 字数 420 浏览 0 评论 0原文

我目前正在尝试在我的网站上使用 HighStock 图表。我将使用 PHP 文件生成图表数据,我唯一的问题是 HighStock 使用什么日期/时间格式?这是他们网站上的示例文件: http:// /www.highcharts.com/samples/data/jsonp.php?filename=aapl-c.json

[1107129600000,38.45]

上面是 json 文件中的一行数据,其中1107129600000 是日期,38.45 是股票价格。希望有人知道日期/时间类型。谢谢。

I'm currently attempting to use HighStock charts on my site. I'll be using a PHP file to generate the data for the chart, my only question is what date/time format does HighStock use? Here's an example file they have on their site: http://www.highcharts.com/samples/data/jsonp.php?filename=aapl-c.json

[1107129600000,38.45]

Above is a line of data in the json file where 1107129600000 is the date and 38.45 is the stock price. Hopefully someone will know the date/time type. Thanks.

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

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

发布评论

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

评论(1

柠北森屋 2025-01-05 19:59:57

它看起来像 UNIX 时间戳。它是自 1970 年 1 月 1 日以来的秒数(或者在您的情况下是毫秒)。大多数编程语言都允许您将其转换为更自然的日期/时间格式。

这里有一个可以帮助您转换的工具,您可以亲自查看:http://www.epochconverter.com/

更多参考:http://en.wikipedia.org/wiki/Unix_time

It looks like a UNIX timestamp. It's the number of seconds(or in your case, milliseconds) since January 1 1970. Most programming languages will let you convert this into more natural date/time formats.

Here's a tool to help you convert to see for yourself: http://www.epochconverter.com/

Further reference: http://en.wikipedia.org/wiki/Unix_time

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