php時間格式轉換

來源:互聯網
上載者:User

標籤:rto   pre   date   tar   轉換   rom   create   time   this   

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時間格式轉換

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.