Ruby 教程 之 Ruby 日期 & 时间(Date & Time) 4

简介: Ruby 日期 & 时间(Date & Time)

Ruby 教程 之 Ruby 日期 & 时间(Date & Time) 4

Ruby 日期 & 时间(Date & Time)

Time 类在 Ruby 中用于表示日期和时间。它是基于操作系统提供的系统日期和时间之上。该类可能无法表示 1970 年之前或者 2038 年之后的日期。

本教程将让您熟悉日期和时间的所有重要的概念。

Time.utc、Time.gm 和 Time.local 函数

这些函数可用于格式化标准格式的日期,如下所示:

July 8, 2008

Time.local(2008, 7, 8)

July 8, 2008, 09:10am,本地时间

Time.local(2008, 7, 8, 9, 10)

July 8, 2008, 09:10 UTC

Time.utc(2008, 7, 8, 9, 10)

July 8, 2008, 09:10:11 GMT (与 UTC 相同)

Time.gm(2008, 7, 8, 9, 10, 11)
下面的实例在数组中获取所有的组件:

[sec,min,hour,day,month,year,wday,yday,isdst,zone]
时区和夏令时
您可以使用 Time 对象来获取与时区和夏令时有关的所有信息,如下所示:

time = Time.new

这里是解释

time.zone # => "UTC":返回时区
time.utc_offset # => 0:UTC 是相对于 UTC 的 0 秒偏移
time.zone # => "PST"(或其他时区)
time.isdst # => false:如果 UTC 没有 DST(夏令时)
time.utc? # => true:如果在 UTC 时区
time.localtime # 转换为本地时区
time.gmtime # 转换回 UTC
time.getlocal # 返回本地区中的一个新的 Time 对象
time.getutc # 返回 UTC 中的一个新的 Time 对象

目录
相关文章
|
4月前
|
存储 Python
Python之日期和时间包datetime的使用
1、基本定义 1.1 时间戳 时间戳是指格林威治时间1970年01月01日00时00分00秒(北京时间1970年01月01日08时00分00秒)起至现在的总秒数(或总毫秒数)。 网上有很多时间戳在线转换工具,可以自行计算验证。
|
5月前
|
Python
python3关于time时间的各种格式
python3关于time时间的各种格式
29 3
|
6月前
|
Python
Python时间和日期
Python时间和日期
|
6月前
|
Ruby
Ruby 教程 之 Ruby 日期 & 时间(Date & Time) 6
Ruby 日期 & 时间(Date & Time)
62 5
|
6月前
|
Ruby
Ruby 教程 之 Ruby 日期 & 时间(Date & Time) 5
Ruby 日期 & 时间(Date & Time)
45 3
|
6月前
|
算法 Ruby
Ruby 教程 之 Ruby 日期 & 时间(Date & Time) 7
Ruby 日期 & 时间(Date & Time)
126 0
|
6月前
|
Ruby
Ruby 教程 之 Ruby 日期 & 时间(Date & Time) 3
Ruby 日期 & 时间(Date & Time)
55 0
|
6月前
|
Ruby
Ruby 教程 之 Ruby 日期 & 时间(Date & Time) 1
Ruby 日期 & 时间(Date & Time)
47 0
|
6月前
|
Ruby
Ruby 教程 之 Ruby 日期 & 时间(Date & Time) 2
Ruby 日期 & 时间(Date & Time)
47 0
|
6月前
|
Unix Python
Python-datetime、time包常用功能汇总
Python-datetime、time包常用功能汇总
66 0