php时间格式转换

Posted 努力的喵喵

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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时间格式转换的主要内容,如果未能解决你的问题,请参考以下文章

Drupal 6 视图 2:PHP 片段

如何在 Reactjs 中添加丰富的代码片段?

PHP日期格式怎么转换

关于时间格式的转换,MYSQL,PHP,10位数字表示时间

超级有用的9个PHP代码片段

超实用的php代码片段