标签: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带入你的项目中。
标签:style class blog code color string
原文地址:http://www.cnblogs.com/yjken/p/3783629.html