JS模仿PHP日期格式化 - 时间戳转字符串 - 日期字符串转时间戳 - date('Y-m-d H:i:s', 1529625620)

使用方法

  1. 引入下面的JS函数
  2. 需要字符串转时间戳,可以使用var timestamp = (new Date("2018-06-22 08:00:20")).getTime()/1000;
  3. 需要时间戳转字符串,var dateString = formatDate('Y-m-d H:i:s', 1529625620);

 

JS函数

 

 

升级自:

https://blog.csdn.net/ywch520/article/details/89645732

 

参考了:

https://www.cnblogs.com/laosunlaiye/p/9395327.html

https://blog.csdn.net/u012967454/article/details/84869372

 

你可能感兴趣的:(Javascript,开发)