instance method
to_time
Ruby on Rails 4.2.9
Since v3.0.20Signature
to_time(form = :local)
Converts a string to a Time value. The form can be either :utc or :local (default :local).
The time is parsed using Time.parse method. If form is :local, then the time is in the system timezone. If the date part is missing then the current date is used and if the time part is missing then it is assumed to be 00:00:00.
"13-12-2012".to_time # => 2012-12-13 00:00:00 +0100 "06:12".to_time # => 2012-12-13 06:12:00 +0100 "2012-12-13 06:12".to_time # => 2012-12-13 06:12:00 +0100 "2012-12-13T06:12".to_time # => 2012-12-13 06:12:00 +0100 "2012-12-13T06:12".to_time(:utc) # => 2012-12-13 05:12:00 UTC "12/13/2012".to_time # => ArgumentError: argument out of range
Parameters
-
formopt = :local
Source
# File activesupport/lib/active_support/core_ext/string/conversions.rb, line 19
def to_time(form = :local)
parts = Date._parse(self, false)
return if parts.empty?
now = Time.now
time = Time.new(
parts.fetch(:year, now.year),
parts.fetch(:mon, now.month),
parts.fetch(:mday, now.day),
parts.fetch(:hour, 0),
parts.fetch(:min, 0),
parts.fetch(:sec, 0) + parts.fetch(:sec_fraction, 0),
parts.fetch(:offset, form == :utc ? 0 : nil)
)
form == :utc ? time.utc : time.to_time
end
Defined in activesupport/lib/active_support/core_ext/string/conversions.rb line 19
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in String