1,时间的格式化输出
 
t = Time.now  
# to get day, month and year with century  
# also hour, minute and second  
puts t.strftime("%d/%m/%Y %H:%M:%S")  
  
# You can use the upper case A and B to get the full  
# name of the weekday and month, respectively  
puts t.strftime("%A")  
puts t.strftime("%B")  
  
# You can use the lower case a and b to get the abbreviated  
# name of the weekday and month, respectively  
puts t.strftime("%a")  
puts t.strftime("%b")  
  
# 24 hour clock and Time zone name  
puts t.strftime("at %H:%M %Z") 
 
评论
发表评论

您还没有登录,请登录后发表评论

minstrel
搜索本博客
最近加入圈子
存档
最新评论