程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php獲取當前時間和轉換格式,php獲取當前時間

php獲取當前時間和轉換格式,php獲取當前時間

編輯:關於PHP編程

php獲取當前時間和轉換格式,php獲取當前時間


## 獲取時間和轉換格式
```
//1.time():返回當前時間的Unix時間戳
$stimestamp = time();
$date = date("Y-m-d h:i:sa",$stimestamp)

//2.mktime():返回一個指定日期的Unix時間戳
//語法:mktime(hour,minute,second,month,day,year,is_dst);
$stimestamp = mktime(9,12,31,6,10,2016)
$date = date("Y-m-d h:i:sa",$stimestamp)

//3.date(formate,timestamp);返回時間戳對應的日期
$date = date("Y-m-d h:i:sa",$stimestamp)

//4.strtotime();函數將任何英文文本的日期或時間描述解析為 Unix 時間戳(自 January 1 1970 00:00:00 GMT 起的秒數)
//語法:strtotime(time,now);
strtotime('2014-09-10 11:01:46');
echo(strtotime("now") . "<br>");
echo(strtotime("15 October 1980") . "<br>");
echo(strtotime("+5 hours") . "<br>");
echo(strtotime("+1 week") . "<br>");
echo(strtotime("+1 week 3 days 7 hours 5 seconds") . "<br>");
echo(strtotime("next Monday") . "<br>");
echo(strtotime("last Sunday"));
```

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved