目标格式'2019-12-27 17:25:08',
无参数则返回当前时间字符串
传入毫秒时间戳则输出对应时间字符串
//毫秒级时间戳转Y-m-d H:i:s
function timeFormat(timeStamp){
const obj = timeStamp ? new Date(timeStamp) : new Date();
var res = {
y : obj.getFullYear(),
m : obj.getMonth()+1,
d : obj.getDate(),
h : obj.getHours(),
i : obj.getMinutes(),
s : obj.getSeconds()
};
for (x in res){
res[x] = (res[x] < 10) ? '0' + res[x] : res[x];
}
return res.y+"-"+res.m+"-"+res.d+" "+res.h+":"+res.i+":"+res.s
}
网友评论