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:本文的部份代码来自网,亲测可用

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
### 回答1: JavaScript 提供了一些内置的函数和对象可以方便地实现时间时间戳相互转换。 要将时间戳转换时间,可以使用 JavaScript 的 Date 对象。例如: ``` // 将时间戳转换时间 var timestamp = 1615574400; var date = new Date(timestamp * 1000); // 使用 Date 对象的方法格式化时间 console.log(date.getFullYear() + "-" + (date.getMonth() + 1) + "-" + date.getDate()); // 2021-3-31 ``` 要将时间转换时间戳,可以使用 Date 对象的 `getTime()` 方法。例如: ``` // 将时间转换时间戳 var date = new Date("2022-12-17T00:00:00"); var timestamp = Math.floor(date.getTime() / 1000); console.log(timestamp); // 1675446400 ``` 注意,JavaScript 的时间戳是以毫秒为单位的,如果要将其转换为以秒为单位的时间戳,需要使用数学函数 `Math.floor()` 对时间戳进行取整。 另外,还可以使用 JavaScript 的 `toISOString()` 方法将时间转换ISO 格式的字符串,再使用正则表达式截取其时间戳。例如: ``` // 将时间转换ISO 格式的字符串 var date = new Date("2022-12-17T00:00:00"); var isoString = date.toISOString(); // 使用正则表达式截取时间戳 var timestamp = isoString.match(/\d{10}/g)[0]; console.log(timestamp); // 1675446400 ``` 希望这些信息能帮到你! ### 回答2: JavaScript可以使用Date对象进行时间时间戳之间的转换。 1. 将时间转换时间戳: 要将一个特定的时间转换时间戳,可以使用Date对象的getTime()方法。该方法返回的是一个自1970年1月1以来经过的毫秒数。例如,可以使用下面的代码将当前时间转换时间戳: ``` var timestamp = new Date().getTime(); ``` 2. 将时间戳转换时间: 要将一个时间戳转换时间,可以使用Date对象的构造函数,将时间戳作为参数传入。然后,可以使用该对象的各种方法(例如getFullYear()、getMonth()、getDate()等)来获取年、月、、时、分、秒等信息。例如,可以使用下面的代码将一个时间戳转换时间: ``` var timestamp = 1609459200000; // 2021年1月1时间戳 var date = new Date(timestamp); console.log(date); ``` 以上代码将打印出:Fri Jan 01 2021 08:00:00 GMT+0800 (国标准时间) 需要注意的是,JavaScript时间戳是以毫秒为单位的,而不是以秒为单位的。所以在进行时间戳转换时,需要确保使用正确的单位。 总结起来,通过Date对象的getTime()方法可以将时间转换时间戳,通过Date对象的构造函数可以将时间戳转换时间。 ### 回答3: JavaScript时间时间戳之间的相互转换非常简单。时间戳是指从1970年1月100:00:00格林威治标准时间(UTC)开始经过的毫秒数。而JavaScript的Date对象表示一个特定的期和时间。 要将时间戳转换JavaScript的Date对象,可以使用Date的构造函数。例如,将时间戳1234567890转换为Date对象的代码如下: ```javascript var timestamp = 1234567890; var date = new Date(timestamp); ``` 这样就可以得到表示时间戳对应期和时间的Date对象。 相反,要将JavaScript的Date对象转换时间戳,可以使用Date对象的getTime()方法。该方法返回自1970年1月100:00:00 UTC到指定期和时间之间经过的毫秒数。例如,将Date对象转换时间戳的代码如下: ```javascript var date = new Date(); var timestamp = date.getTime(); ``` 这样就可以得到表示指定Date对象对应的时间戳。 总之,要在JavaScript进行时间时间戳之间的转换,可以使用Date对象的构造函数将时间戳转换为Date对象,或者使用Date对象的getTime()方法将Date对象转换时间戳。这两种方法对于时间时间戳之间的转换非常方便。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值