JS 時間字串與時間戳之間的轉換

2022-06-06 23:30:18 字數 1431 閱讀 7192

1、當前時間換時間戳

var timestamp = parseint(new date().gettime()/1000);    //當前時間戳

document.write(timestamp);

2、當前時間換日期字串

var now = new

date();

var yy = now.getfullyear(); //

年var mm = now.getmonth() + 1; //

月var dd = now.getdate(); //

日var hh = now.gethours(); //

時var ii = now.getminutes(); //

分var ss = now.getseconds(); //

秒var clock = yy + "-";

if(mm < 10) clock += "0";

clock += mm + "-";

if(dd < 10) clock += "0";

clock += dd + " ";

if(hh < 10) clock += "0";

clock += hh + ":";

if (ii < 10) clock += '0';

clock += ii + ":";

if (ss < 10) clock += '0';

clock +=ss;

document.write(clock);

//獲取當前日期

3、日期字串轉時間戳

var date = '2015-03-05 17:59:00.0';

date = date.substring(0,19);

date = date.replace(/-/g,'/'); //

必須把日期'-'轉為'/'

var timestamp = new

date(date).gettime();

document.write(timestamp);

4、時間戳轉日期字串

var timestamp = '1425553097';

var d = new date(timestamp * 1000); //

根據時間戳生成的時間物件

var date = (d.getfullyear()) + "-" +(d.getmonth() + 1) + "-" +(d.getdate()) + " " +(d.gethours()) + ":" +(d.getminutes()) + ":" +(d.getseconds());

document.write(date);

** 

php 字串轉時間戳 php字串轉時間戳

php字串轉時間戳 在php中可以使用 strtotime 函式將字串轉為時間戳。strtotime說明和用法 strtotime 將任何字串的日期時間描述解析為 unix 時間戳strtotime string time int now time int 本函式預期接受乙個包含美國英語日期格式的字...

MySQL 字串轉時間戳

在php等後台語言中想要將字串轉換成時間戳是非常方便的,但是在mysql中並沒有直接提供相應的函式進行直接轉換,或者說對於特殊的字串轉換效果並不理想。但是mysql中存在豐富的時間處理函式,可以組合進行處理,以達到效果。採用下面的方法可以將字串轉換成 unix時間戳 select unix time...

php字串轉時間戳

php 提供了函式可以方便的將各種形式的日期轉換為時間戳,該類函式主要是 strtotime strtotime 函式用於將英文文字字串表示的日期轉換為時間戳,為 date 的反函式,成功返回時間戳,否則返回 false 語法 int strtotime string time int now 引數...