php怎么计算相差几天
程序员文章站
2022-03-24 15:54:44
...
php计算相差几天的方法:首先创建一个PHP示例文件;然后定义两个时间点;接着使用strtotime将时间格式化为时间戳;最后直接输出“$days”即可获取到相差的天数。
本文操作环境:Windows7系统、PHP7.1、Dell G3电脑。
php计算两个日期的相差天数,处理时间间隔
举例:想要获取 2016-04-10和2016-06-15相差多少天。
$begin_date = strtotime('2016-04-10'); $end_date = strtotime('2016-06-15'); $days = round(($end_date - $begin_date) / 3600 / 24);
其中已经使用strtotime将时间格式化为时间戳,直接输出$days,即可获取到相差的天数。
另外附上处理时间间隔的方法。(推荐:《PHP视频教程》)
/* * 处理时间问题 */ public function get_time($from,$to){ if($to > $from){ $miao = $to - $from; }else{ $miao = $from - $to; } $hour = floor($miao/3600); $minute = floor(($miao-$hour*3600)/60); $second = $miao - $hour * 3600 - $minute * 60 ; $str = ''; if($hour > 0){ $str .= $hour.'时'; } if($minute > 0){ $str .= $minute.'分'; } if($second){ $str .= $second.'秒'; } return $str; }
以上就是php怎么计算相差几天的详细内容,更多请关注其它相关文章!
上一篇: 红帽linux是什么?
下一篇: 如何查看html文件的代码?