码迷,mamicode.com
首页 > 其他好文 > 详细

Golang时间格式化

时间:2014-06-16 10:06:39      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   string   

PHP中格式化时间很方便,只需要一个函数就搞定:

date("Y-m-d H:i:s")

而在Golang中,用的是"2006-01-02 15:04:05"这样的layout string:

time.Now().Format("2006-01-02 15:04:05")

2006表示year

01表示month

02表示day

15表示hour

04表示minute

05表示seconds

只能用以上这几个数字来格式化时间,假如把这里的2006改写成2008就不能正确格式化时间。

这个有点奇怪,不过golang不管在文法结构上,还是执行效率上,都有其长处,值得你把golang带入你的项目中。

Golang时间格式化,布布扣,bubuko.com

Golang时间格式化

标签:style   class   blog   code   color   string   

原文地址:http://www.cnblogs.com/yjken/p/3783629.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!