PHP-计算两个日期剩余的时间百分比
作者:互联网
到目前为止,我试图获取两个日期之间剩余时间的百分比,以便我可以使用进度条.
我有以下代码,我正在传递两个日期并进行求和,但出现错误.我不确定这个错误是否是由于日期格式引起的,所以我可以更改它.
<?
$start = '2015-11-03 14:05:15';
$end = '2015-11-03 18:05:15';
$current = '2015-11-03 16:12:15';
$completed = (($current - $start) / ($end - $start)) * 100;
?>
<? print $completed; ?>
我收到以下错误.
警告:除以零
解决方法:
strtotime将采用日期字符串,并将其转换为UNIX标准时间(以秒为单位).
<?
$start = strtotime('2015-11-03 14:05:15');
$end = strtotime('2015-11-03 18:05:15');
$current = strtotime('2015-11-03 16:12:15');
$completed = (($current - $start) / ($end - $start)) * 100;
?>
<? print $completed; ?>
标签:percentage,php,time 来源: https://codeday.me/bug/20191027/1946654.html