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时间格式如何转化的详细内容。