javascript将时间戳日期互转

可能后面会用上,下面是时间戳转换为日期function getTimeStr(time){    var now = new Date(time*1000);    var year=now.getFullYear();    var month=now.getMonth()+1;    if(month&nbs...

阅读全文

MySQL 获得当前日期时间(以及时间的转换)

1.1获得当前日期+时间(date+time)函数:now()除了now()函数能获得当前的日期时间外,MySQL中还有下面的函数:current_timestamp()   current_timestamplocaltime()   localtimelocaltimestamp()   localtimestamp 这些日期时间函数,都等同于now()。鉴于now()函数简短易记,建议总是使用now()来替代上面列出的函...

阅读全文