Python
当前时间戳=>1500276481
int(time.time())
当前时间=>2017-07-17 15:29:40 =>str
time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
时间->时间戳 1385815447
int(time.mktime(time.strptime('2013-11-30 20:44:07','%Y-%m-%d %H:%M:%S')))
时间戳->时间 2013-11-30 20:44:07
time.strftime("%Y-%m-%d %H:%M:%S",time.localtime(1385815447))
JavaScript
时间戳->时间 2013-11-30 20:44:07
function timetrans(date){
var date = new Date(date*1000);//如果date为10位不需要乘1000
var Y = date.getFullYear() + '-';
var M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-';
var D = (date.getDate() < 10 ? '0' + (date.getDate()) : date.getDate()) + ' ';
var h = (date.getHours() < 10 ? '0' + date.getHours() : date.getHours()) + ':';
var m = (date.getMinutes() <10 ? '0' + date.getMinutes() : date.getMinutes()) + ':';
var s = (date.getSeconds() <10 ? '0' + date.getSeconds() : date.getSeconds());
return Y+M+D+h+m+s;
}
网友评论