ruby 获取现在的时间
时间: 2023-07-17 20:07:04 浏览: 119
获取当前时间
在 Ruby 中,您可以使用 Time 类来获取当前时间。以下是获取当前时间的示例代码:
```ruby
currentTime = Time.now
puts "当前时间为:#{currentTime}"
```
输出结果将类似于:
```
当前时间为:2021-09-13 15:30:00 +0800
```
您可以根据需要格式化时间输出,例如:
```ruby
currentTimeFormatted = currentTime.strftime("%Y-%m-%d %H:%M:%S")
puts "当前时间为:#{currentTimeFormatted}"
```
输出结果将类似于:
```
当前时间为:2021-09-13 15:30:00
```
阅读全文