如何将日期转换为“YYYY-MM-DD hh:mm:ss”格式到 UNIX 时间戳

发布于 2024-11-24 05:11:25 字数 281 浏览 2 评论 0原文

如何将“YYYY-MM-DD hh:mm:ss”格式的时间(例如 "2011-07-15 13:18:52")转换为 UNIX 时间戳?

我尝试了这段 Javascript 代码:

date = new Date("2011-07-15").getTime() / 1000
alert(date)

它可以工作,但是当我向输入添加 time('2011-07-15 13:18:52') 时,它会导致 NaN

How can I convert a time in the format "YYYY-MM-DD hh:mm:ss" (e.g. "2011-07-15 13:18:52") to a UNIX timestamp?

I tried this piece of Javascript code:

date = new Date("2011-07-15").getTime() / 1000
alert(date)

And it works, but it results in NaN when I add time('2011-07-15 13:18:52') to the input.

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

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

发布评论

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

评论(5

迷离° 2024-12-01 05:11:25

使用长日期构造函数并指定所有日期/时间组件:

var match = '2011-07-15 13:18:52'.match(/^(\d+)-(\d+)-(\d+) (\d+)\:(\d+)\:(\d+)$/)
var date = new Date(match[1], match[2] - 1, match[3], match[4], match[5], match[6])
// ------------------------------------^^^
// month must be between 0 and 11, not 1 and 12
console.log(date);
console.log(date.getTime() / 1000);

Use the long date constructor and specify all date/time components:

var match = '2011-07-15 13:18:52'.match(/^(\d+)-(\d+)-(\d+) (\d+)\:(\d+)\:(\d+)$/)
var date = new Date(match[1], match[2] - 1, match[3], match[4], match[5], match[6])
// ------------------------------------^^^
// month must be between 0 and 11, not 1 and 12
console.log(date);
console.log(date.getTime() / 1000);
灵芸 2024-12-01 05:11:25

以下代码适用于格式 YYYY-MM-DD hh:mm:ss

function parse(dateAsString) {
    return new Date(dateAsString.replace(/-/g, '/'))
}

此代码将 YYYY-MM-DD hh:mm:ss 转换为 YYYY/ MM/DD hh:mm:ss 很容易被 Date 构造函数解析。

Following code will work for format YYYY-MM-DD hh:mm:ss:

function parse(dateAsString) {
    return new Date(dateAsString.replace(/-/g, '/'))
}

This code converts YYYY-MM-DD hh:mm:ss to YYYY/MM/DD hh:mm:ss that is easily parsed by Date constructor.

玩套路吗 2024-12-01 05:11:25

您已接受答案,但可以使用更简单的正则表达式:

function stringToDate(s)  {
  s = s.split(/[-: ]/);
  return new Date(s[0], s[1]-1, s[2], s[3], s[4], s[5]);
}

alert(stringToDate('2011-7-15 20:46:3'));

当然,输入字符串必须是正确的格式。

You've accepted an answer, but a much simpler regular expression can be used:

function stringToDate(s)  {
  s = s.split(/[-: ]/);
  return new Date(s[0], s[1]-1, s[2], s[3], s[4], s[5]);
}

alert(stringToDate('2011-7-15 20:46:3'));

Of course the input string must be the correct format.

当爱已成负担 2024-12-01 05:11:25

月份从 0 开始,与天不同!所以这将完美地工作(已测试

function dateToUnix(year, month, day, hour, minute, second) {
    return ((new Date(Date.UTC(year, month - 1, day, hour, minute, second))).getTime() / 1000.0);
}

Months start from 0, unlike the days! So this will work perfectly (tested)

function dateToUnix(year, month, day, hour, minute, second) {
    return ((new Date(Date.UTC(year, month - 1, day, hour, minute, second))).getTime() / 1000.0);
}
八巷 2024-12-01 05:11:25

这将返回自 1970 年 1 月 1 日以来的毫秒数:
Date.parse('2011-07-15 10:05:20')

只需除以 1000 即可得到秒而不是毫秒。

This returns number of milliseconds since Jan. 1st 1970:
Date.parse('2011-07-15 10:05:20')

Just divide by 1000 to get seconds instead of milliseconds..

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