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教程》