使用变量创建具有特定值的日期时间的最简单方法是什么
使用这些变量的最简单方法是什么:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
DateTime::civil
将其更改为
to_i如果您担心像
无处不在。"08"
这样的内容被解释为八进制数,则 (10)Use
DateTime::civil
Change that to
to_i(10)
everywhere if you're worried about something like"08"
being interpreted as an octal number.使用DateTime.civil。以下是更多信息:civil
Use
DateTime.civil
. Here is more info: civil