使用变量创建具有特定值的日期时间的最简单方法是什么

发布于 2024-12-01 23:44:47 字数 186 浏览 1 评论 0原文

使用这些变量的最简单方法是什么:

year: "2011"
month: "8"
date: "28"
hours: "1"
minutes: "4"

创建一个 DateTime(即 Sun, 28 Aug 2011 01:04:00 +1000)。时区并不重要。

What is the easiest way to use these variables:

year: "2011"
month: "8"
date: "28"
hours: "1"
minutes: "4"

to create a DateTime (i.e. Sun, 28 Aug 2011 01:04:00 +1000). The time zone does not matter.

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

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

发布评论

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

评论(2

童话里做英雄 2024-12-08 23:44:47

使用 DateTime::civil

DateTime.civil(year.to_i, month.to_i, date.to_i, hours.to_i, minutes.to_i)

将其更改为 to_i如果您担心像 "08" 这样的内容被解释为八进制数,则 (10) 无处不在。

Use DateTime::civil

DateTime.civil(year.to_i, month.to_i, date.to_i, hours.to_i, minutes.to_i)

Change that to to_i(10) everywhere if you're worried about something like "08" being interpreted as an octal number.

秋叶绚丽 2024-12-08 23:44:47

使用DateTime.civil。以下是更多信息:civil

Use DateTime.civil. Here is more info: civil

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