Advertisement

时间戳转换为时间

阅读量:

php模板语法将时间戳转换为时间

复制代码
  <div class="time-ago">

    
  Release time: {$vo.create_time|date='Y-m-d H:i:s',###}
    
 </div>

js实现时间戳转换为时间

复制代码
     // 时间戳转换为时间

    
     function timestampToTime(timestamp) {
    
         var date = new Date(timestamp * 1000); //时间戳为10位需*1000,时间戳为13位的话不需乘1000
    
         Y = date.getFullYear() + '-';
    
         M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
    
         D = date.getDate() + ' ';
    
         h = date.getHours() + ':';
    
         m = date.getMinutes() + ':';
    
         s = date.getSeconds();
    
         return Y + M + D + h + m + s;
    
     }
    
  
    
 timestampToTime(1569319905)

时间格式:

全部评论 (0)

还没有任何评论哟~