php時間格式轉換

php時間格式的轉換函數有date(),strtotime()函數,php 原生的時間類也能夠轉換時間格式。php

一、Y-m-d轉換爲時間戳   例:2017-08-22 轉化爲時間戳    strtotime(‘2017-08-22’);yii

二、時間戳轉換爲Y-m-d H:i:s  date("Y-m-d H:i:s",strtotime('2017-08-22'));curl

三、時間Ymd格式轉化爲Y-m-d  date(「Y-m-d」,strtotime("20170822"));函數

 用原生php類也能夠直接轉換  var_dum(\DateTime::createFromFormat('Ymd','20170822')->format('Y-m-d'));post

四、獲取當前時間戳:一、time(); 二、date('U');this

五、明天的時間格式  date("Y-m-d H:i:s",strtotime(+1 day));url

 

獲取一段時間的日期  搜過來的代碼orm

$end = new \DateTime($end);$end = $end->modify( '+1 day' );$interval = new \DateInterval('P1D');// yii中引用原生的php類加\,由於有命名空間$daterange = new \DatePeriod($start, $interval ,$end);//查詢這個時間段內全部的日期foreach($daterange as $date){    $single_date = $date->format("Ymd");//每一個日期都改爲20170022的格式    $this->run_curl($url,$post_data,$project,$flow,$single_date,$timeBegin,$timeEnd);}$datarange就是時間段內的日期。
相關文章
相關標籤/搜索