这是什么类型的日期/时间格式?
我目前正在尝试在我的网站上使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它看起来像 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