V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  jinzhe  ›  全部回复第 5 页 / 共 17 页
回复总数  336
1  2  3  4  5  6  7  8  9  10 ... 17  
2018-09-30 18:06:03 +08:00
回复了 hijoker 创建的主题 Go 编程语言 Go 的几大坑
@silov 自己写个辅助函数转一下即可
```go

// Format time.Time struct to string
// MM - month - 01
// M - month - 1, single bit
// DD - day - 02
// D - day 2
// YYYY - year - 2006
// YY - year - 06
// HH - 24 hours - 03
// H - 24 hours - 3
// hh - 12 hours - 03
// h - 12 hours - 3
// mm - minute - 04
// m - minute - 4
// ss - second - 05
// s - second = 5
func FormatDate(format string, t ...time.Time) string {
var datetime time.Time
if len(t) == 0 {
datetime = time.Now()
} else {
datetime = t[0]
}

res := strings.Replace(format, "MM", datetime.Format("01"), -1)
res = strings.Replace(res, "M", datetime.Format("1"), -1)
res = strings.Replace(res, "DD", datetime.Format("02"), -1)
res = strings.Replace(res, "D", datetime.Format("2"), -1)
res = strings.Replace(res, "YYYY", datetime.Format("2006"), -1)
res = strings.Replace(res, "YY", datetime.Format("06"), -1)
res = strings.Replace(res, "HH", fmt.Sprintf("%02d", datetime.Hour()), -1)
res = strings.Replace(res, "H", fmt.Sprintf("%d", datetime.Hour()), -1)
res = strings.Replace(res, "hh", datetime.Format("03"), -1)
res = strings.Replace(res, "h", datetime.Format("3"), -1)
res = strings.Replace(res, "mm", datetime.Format("04"), -1)
res = strings.Replace(res, "m", datetime.Format("4"), -1)
res = strings.Replace(res, "ss", datetime.Format("05"), -1)
res = strings.Replace(res, "s", datetime.Format("5"), -1)
return res
}```
2018-09-20 14:58:57 +08:00
回复了 JR1024 创建的主题 分享创造 买了 http://2bt.cc/ 做个什么网站呢?
爱变态.嘻嘻
2018-09-20 14:56:00 +08:00
回复了 mytry 创建的主题 程序员 JS 常量 0 0 0 0 算 24 点
0x18
2018-08-22 12:58:27 +08:00
回复了 sunzhenyucn 创建的主题 上海 上海这里可以补办外地身份证吗?
我办过,但是被拒绝了!估计是之前没有按指纹。
搜索了下“藏”
2018-06-12 14:09:04 +08:00
回复了 heyzxz 创建的主题 分享创造 有 WebGL 撸了这么个破玩意儿
一开这个网页笔记本风扇开始工作了
2018-05-25 15:00:49 +08:00
回复了 PythonAnswer 创建的主题 程序员 逃离 sublime
vscode 有个细节不太好,就是滚动代码最底部,还能往上滚动都看不见代码了
2018-04-11 10:54:35 +08:00
回复了 wojfsdj 创建的主题 程序员 大家前后端规范是怎么制定的呢?
作为前端超不喜欢后端给 null,这样渲染的时候还要一个个判断。
2018-04-10 14:16:43 +08:00
回复了 GoPHP 创建的主题 程序员 Golang 适合 Web 开发吗?
PHP 可以做前端,go 做后端,为什么要排斥?
2018-03-14 18:30:53 +08:00
回复了 JerseyCafe 创建的主题 iPhone 有入手 美版 iPhone X 的吗。
去韩国买,都是美版
2018-03-06 10:39:05 +08:00
回复了 bilibiliQQ 创建的主题 分享创造 YouTwoPHP,一个开源的油管视频代理工具!
Downie 最好用
2018-02-24 10:39:53 +08:00
回复了 phx13ye 创建的主题 程序员 在外地工作,老家买房好吗?
@fenglangjuxu 拉网线做啥?用手机热点就好了,现在很多都有无限流量!!!
php 是最好的。。。:)
2018-01-30 18:47:39 +08:00
回复了 guoyuchuan 创建的主题 程序员 用自己的电脑在公司办公,各位有什么看法;
自己带 mbp 已经好多年了 没有补助
2018-01-29 10:20:40 +08:00
回复了 loyalyonggang 创建的主题 分享发现 留一个个人网址
https://im.zee.kim
2018-01-26 17:16:26 +08:00
回复了 Icezers 创建的主题 MacBook Pro 有打算给年迈的 MBP 降级系统的吗?
13 later 10.13.3 除了开机输入密码有点卡之外还好吧,凑合用!
2018-01-26 10:38:50 +08:00
回复了 0gys 创建的主题 分享发现 差点又被联通坑了
目前用的 14 元一月的,仅仅只有 100m 流量!!!想办理大王卡异地不能办理!!!
2018-01-08 10:36:42 +08:00
回复了 zjsxwc 创建的主题 MacBook Pro 你们是怎么用 256G 的 mbp 的?
我是用 2t 台式机硬盘做备份
2018-01-03 15:50:38 +08:00
回复了 jinzhe 创建的主题 分享创造 整理了一些 macOS 上好用的软件
@kaikai5601 加了一个
1  2  3  4  5  6  7  8  9  10 ... 17  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1167 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 40ms · UTC 23:17 · PVG 07:17 · LAX 15:17 · JFK 18:17
Developed with CodeLauncher
♥ Do have faith in what you're doing.