溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

PHP中有哪些時(shí)間相關(guān)的函數(shù)

發(fā)布時(shí)間:2021-01-04 15:04:36 來(lái)源:億速云 閱讀:119 作者:Leah 欄目:開(kāi)發(fā)技術(shù)

PHP中有哪些時(shí)間相關(guān)的函數(shù)?相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。

具體如下:

<?php
/**
 * 設(shè)置時(shí)區(qū)
 */
date_default_timezone_set("Asia/Shanghai");
 
/**
 * 獲取時(shí)區(qū)
 */
echo date_default_timezone_get();
//結(jié)果 UTC
echo "<br/>";
 
/**
 * 添加時(shí)間
 */
$date=date_create("2013-03-15"); //創(chuàng)建一個(gè)DateTime 對(duì)象
date_add($date,date_interval_create_from_date_string("40 month"));//years days
//date_interval_create_from_date_string 從字符串的相關(guān)部分建立一個(gè)DateInterval。
echo date_format($date,"Y-m-d");
//結(jié)果2016-07-15
echo "<br/>";
 
/**
 * 減去時(shí)間
 */
$date=date_create("2013-03-15");
date_sub($date,date_interval_create_from_date_string("40 days"));
echo date_format($date,"Y-m-d");
//2013-02-03
echo "<br/>";
 
/**
 * 獲取兩個(gè)時(shí)區(qū)的差值
 */
$date1=date_create("2013-03-15");
$date2=date_create("2013-12-12");
$diff=date_diff($date1,$date2);//返回的是一個(gè)DateInterval對(duì)象
echo "<pre>";
var_dump($diff);
// object(DateInterval)#4 (15) {
//  ["y"]=>
//  int(0)
//  ["m"]=>
//  int(8)
//  ["d"]=>
//  int(27)
//  ["h"]=>
//  int(0)
//  ["i"]=>
//  int(0)
//  ["s"]=>
//  int(0)
//  ["weekday"]=>
//  int(0)
//  ["weekday_behavior"]=>
//  int(0)
//  ["first_last_day_of"]=>
//  int(0)
//  ["invert"]=>
//  int(0)
//  ["days"]=>
//  int(272)
//  ["special_type"]=>
//  int(0)
//  ["special_amount"]=>
//  int(0)
//  ["have_weekday_relative"]=>
//  int(0)
//  ["have_special_relative"]=>
//  int(0)
// }
echo "<br/>";
 
/**
 * 獲取當(dāng)前時(shí)間戳
 */
$date=date_create();
echo date_timestamp_get($date) .'<br/>';
 
$time = time();
echo $time .'<br>';
 
echo strtotime("now") .'<br/>';
 
/*
 *獲取今天0點(diǎn)時(shí)間戳
 */
 
echo strtotime("today").'<br>';
/**
 * 獲取帶微秒的時(shí)間
 */
echo microtime(true);
 
/*
 *獲取指定時(shí)間戳 
 * mktime(hour,minute,second,month,day,year);
 */
echo "<br/>";
echo mktime(18,30,15,3,15,2019);
 
/*
 *獲取前一天0點(diǎn)時(shí)間戳
 */
echo "<br/>";
echo strtotime('yesterday');
 
/*
 *獲取昨天此時(shí)的時(shí)間戳
 */
echo "<br/>";
 
echo strtotime('-1 days');
 
?>

運(yùn)行結(jié)果:

Asia/Shanghai
2016-07-15
2013-02-03

object(DateInterval)#4 (15) {
  ["y"]=>
  int(0)
  ["m"]=>
  int(8)
  ["d"]=>
  int(27)
  ["h"]=>
  int(0)
  ["i"]=>
  int(0)
  ["s"]=>
  int(0)
  ["weekday"]=>
  int(0)
  ["weekday_behavior"]=>
  int(0)
  ["first_last_day_of"]=>
  int(0)
  ["invert"]=>
  int(0)
  ["days"]=>
  int(272)
  ["special_type"]=>
  int(0)
  ["special_amount"]=>
  int(0)
  ["have_weekday_relative"]=>
  int(0)
  ["have_special_relative"]=>
  int(0)
}
1591150859
1591150859
1591150859
1591113600
1591150859.0074
1552645815
1591027200
1591064459

看完上述內(nèi)容,你們掌握PHP中有哪些時(shí)間相關(guān)的函數(shù)的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI