今天就跟大家聊聊有關(guān)php中有哪些與時(shí)間相關(guān)的常用函數(shù),可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
成都創(chuàng)新互聯(lián)主要從事成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、網(wǎng)頁設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)西藏,十多年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18982081108
php中與時(shí)間相關(guān)的常用函數(shù)有:date_default_timezone_set()、date_create()、date_diff()、date_timestamp_get()、strtotime()、microtime()。下面我們通過代碼來一一介紹。
代碼示例:
"; /** * 添加時(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 "
"; /** * 減去時(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 "
"; /** * 獲取兩個(gè)時(shí)區(qū)的差值 */ $date1=date_create("2013-03-15"); $date2=date_create("2013-12-12"); $diff=date_diff($date1,$date2);//返回的是一個(gè)DateInterval對(duì)象 echo ""; 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 "
"; /** * 獲取當(dāng)前時(shí)間戳 */ $date=date_create(); echo date_timestamp_get($date) .'
'; $time = time(); echo $time .'
'; echo strtotime("now") .'
'; /* *獲取今天0點(diǎn)時(shí)間戳 */ echo strtotime("today").'
'; /** * 獲取帶微秒的時(shí)間 */ echo microtime(true); /* *獲取指定時(shí)間戳 * mktime(hour,minute,second,month,day,year); */ echo "
"; echo mktime(18,30,15,3,15,2019); /* *獲取前一天0點(diǎn)時(shí)間戳 */ echo "
"; echo strtotime('yesterday'); /* *獲取昨天此時(shí)的時(shí)間戳 */ echo "
"; 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)容,你們對(duì)php中有哪些與時(shí)間相關(guān)的常用函數(shù)有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。
名稱欄目:php中有哪些與時(shí)間相關(guān)的常用函數(shù)
分享地址:http://weahome.cn/article/pjsssj.html