0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Ruby on Rails】Time.currentメソッドを使って簡単に時間表示をする方法

Posted at

#対象者

  • 時間の表示方法を知りたい方

#目的

  • Time.currentメソッドを使って時間を表示する

#実際の手順と実例
###1.結論

Time.currentメソッドを使えば簡単に時間が表示できます。
rails cで確認すると

$ rails c
Running via Spring preloader in process 6425
Loading development environment (Rails 5.2.6)
[1] pry(main)> Time.current
=> Sat, 14 Aug 2021 23:20:51 UTC +00:00
[2] pry(main)> 

上記のように今日の時間が取得できます。

###2.応用編

Time.current.all_month #今月
Time.current.all_week  #今週
Time.current.all_day   #今日

#参照

時刻や日付を扱うメソッドの基本情報まとめ【Ruby】【Rails】

####投稿者コメント

時間どのように表示すればいいんだろうって前に悩んでたんですけど、これで一発なんですね。。。勉強になりました。。。

####My Profile
プログラミング学習歴3ヶ月目のアカウントです!
プログラミングスクールで学んだ内容や自分が躓いた箇所等のアウトプットの為に発信しています。
また、プログラミング初学者の方にわかりやすく、簡潔にまとめて情報共有できればと考えています。
もし、投稿した記事の中に誤り等ございましたら、コメント欄でご教授いただけると幸いです。 

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?