php中ttimestamp,JavaScrip(JS)t时间戳与时间日期间相互转换

前几篇文章中说了一下,在PHP脚本中如何对时间进行时间戳与时间格式的转换,今天我们来说说在javascript(js)中如何对时间戳与时间日期之间的相互转换以及用法。javascript的getTime()方法可以输入时间戳

利用js输入现在时间以及指定时间的时间戳

代码//将当前的时间转换成时间戳

var now = new Date();

console.log(now.getTime());

//将指定的日期转换成时间戳

var t = "2018-07-23 20:5:30";

var T = new Date(t);

console.log(T.getTime());

//console.log(),为控制台打印

代码示图

2c1817758327345cbdf4f2bba7c857cb.png

代码运行结果

查看浏览器控制台

832db7ba54dc148000abb37b189f6172.png

利用js的时间戳,输出时间日期格式

代码//输出现在时间的日期格式

console.log(new Date());

//输入一个时间戳来转换成时间日期格式

//飞鸟慕鱼博客

var t = 1528459530000;

console.log(new Date(t));

代码显图

a645161ea71fd046cff945d8339535ae.png

代码运行结果

275d6a3862643555775c683321acb2e5.png

关于javascript时间戳与时间日期格式转换的代码补充

代码

// 获取当前时间戳(以s为单位)

var timestamp = Date.parse(new Date());

timestamp = timestamp / 1000;

//当前时间戳为:1403149534

console.log("当前时间戳为:" + timestamp);

// 获取某个时间格式的时间戳

var stringTime = "2018-07-10 10:21:12";

var timestamp2 = Date.parse(new Date(stringTime));

timestamp2 = timestamp2 / 1000;

//2018-07-10 10:21:12的时间戳为:1531189272

console.log(stringTime + "的时间戳为:" + timestamp2);

// 将当前时间换成时间格式字符串

var timestamp3 = 1531189272;

var newDate = new Date();

newDate.setTime(timestamp3 * 1000);

// Wed Jun 18 2018

console.log(newDate.toDateString());

// Wed, 18 Jun 2018 02:33:24 GMT

console.log(newDate.toGMTString());

// 2018-06-18T02:33:24.000Z

console.log(newDate.toISOString());

// 2018-06-18T02:33:24.000Z

console.log(newDate.toJSON());

// 2018年6月18日

console.log(newDate.toLocaleDateString());

// 2018年6月18日 上午10:33:24

console.log(newDate.toLocaleString());

// 上午10:33:24

console.log(newDate.toLocaleTimeString());

// Wed Jun 18 2018 10:33:24 GMT+0800 (中国标准时间)

console.log(newDate.toString());

// 10:33:24 GMT+0800 (中国标准时间)

console.log(newDate.toTimeString());

// Wed, 18 Jun 2018 02:33:24 GMT

console.log(newDate.toUTCString());

Date.prototype.format = function(format) {

var date = {

"M+": this.getMonth() + 1,

"d+": this.getDate(),

"h+": this.getHours(),

"m+": this.getMinutes(),

"s+": this.getSeconds(),

"q+": Math.floor((this.getMonth() + 3) / 3),

"S+": this.getMilliseconds()

};

if (/(y+)/i.test(format)) {

format = format.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length));

}

for (var k in date) {

if (new RegExp("(" + k + ")").test(format)) {

format = format.replace(RegExp.$1, RegExp.$1.length == 1

? date[k] : ("00" + date[k]).substr(("" + date[k]).length));

}

}

return format;

}

console.log(newDate.format('yyyy-MM-dd h:m:s'));

代码运行结果:

51f4284e56f30c94540545d27bc5db40.png

PS:本文的部份代码来自网,亲测可用

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值