php進行時間型別轉換的方法:1、使用函數【strtotime()】將【Y-m-d】轉換為時間戳,如【strtotime('2017-08-22')】;2、使用函數【date()】將時間戳記轉換為【Y-m-d H:i:s 】。
php進行時間型別轉換的方法:
php時間格式的轉換函數有date( )
,strtotime()
函數,php 原生的時間類別也可以轉換時間格式。
1、Y-m-d轉換為時間戳 例:
2017-08-22 转化为时间戳 strtotime(‘2017-08-22’);
2、時間戳轉換為Y-m-d H:i:s
date("Y-m-d H:i:s",strtotime('2017-08-22'));
3、時間Ymd格式轉換為Y-m-d
date(“Y-m-d”,strtotime("20170822"));
用原生php類別也可以直接轉換
var_dum(\DateTime::createFromFormat('Ymd','20170822')->format('Y-m-d'));
4、取得目前時間戳記:1、time();
2、date('U');
5、明天的時間格式
date("Y-m-d H:i:s",strtotime(+1 day));
取得一段時間的日期 搜尋的程式碼
#$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
就是時間段內的日期。
#相關學習推薦:php程式設計(影片)
以上是php如何進行時間型別轉換的詳細內容。更多資訊請關注PHP中文網其他相關文章!