るりまサーチ

最速Rubyリファレンスマニュアル検索!
44件ヒット [1-44件を表示] (0.101秒)

別のキーワード

  1. rss day
  2. date day
  3. date prev_day
  4. date next_day
  5. time day

ライブラリ

クラス

検索結果

Time#mday -> Integer (21215.0)

日を整数で返します。

...日を整数で返します。

//emlist[][ruby]{
t = Time.local(2000,1,2,3,4,5) # => 2000-01-02 03:04:05 +0900
p t.day # => 2
p t.mday # => 2
//}...

Date#mday -> Integer (21203.0)

月の日を返します (1-31)。

月の日を返します (1-31)。

Time#day -> Integer (18115.0)

日を整数で返します。

...日を整数で返します。

//emlist[][ruby]{
t = Time.local(2000,1,2,3,4,5) # => 2000-01-02 03:04:05 +0900
p t.day # => 2
p t.mday # => 2
//}...

Date#day -> Integer (18103.0)

月の日を返します (1-31)。

月の日を返します (1-31)。