php 计算时差
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 计算时差相关的知识,希望对你有一定的参考价值。
<?php
$start = date_create('1988-08-10');
$end = date_create(); // Current time and date
$diff = date_diff( $start, $end );
echo 'The difference is ';
echo $diff->y . ' years, ';
echo $diff->m . ' months, ';
echo $diff->d . ' days, ';
echo $diff->h . ' hours, ';
echo $diff->i . ' minutes, ';
echo $diff->s . ' seconds';
// Output: The difference is 28 years, 5 months, 19 days, 20 hours, 34 minutes, 36 seconds
echo 'The difference in days : ' . $diff->days;
// Output: The difference in days : 10398
以上是关于php 计算时差的主要内容,如果未能解决你的问题,请参考以下文章
如何在PHP中以分钟为单位获取时差
像facebook消息系统一样计算时差[重复]
Python:将字符串转换为日期时间,计算时差,选择时差超过3天的行
计算时差超过 24 小时
在java中计算月份和时差?
中国与美国的时差怎么算?