gpt4 book ai didi

php - 如何计算两天之间的差异作为格式化字符串?

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:36:27 24 4
gpt4 key购买 nike

这是我到目前为止所得到的:

/**
* Parse a duration between 2 date/times in seconds
* and to convert that duration into a formatted string
*
* @param integer $time_start start time in seconds
* @param integer $time_end end time in seconds
* @param string $format like the php strftime formatting uses %y %m %w %d %h or %i.
* @param boolean $chop chop off sections that have 0 values
*/
public static function FormatDateDiff($time_start = 0, $time_end = 0, $format = "%s", $chop = false) {

if($time_start > $time_end) list($time_start, $time_end) = array($time_end, $time_start);

list($year_start,$month_start,$day_start) = explode('-',date('Y-m-d',$time_start));
list($year_end,$month_end,$day_end) = explode('-',date('Y-m-d',$time_end));

$years = $year_end - $year_start;
$months = $month_end - $month_start;
$days = $day_start - $day_end;
$weeks = 0;
$hours = 0;
$mins = 0;
$secs = 0;

if(mktime(0,0,0,$month_end,$day_end) < mktime(0,0,0,$month_start,$day_start)) {
$years -= 1;
}
if($days < 0) {
$months -= 1;
$days += 30; // this is an approximation...not sure how to figure this out
}
if($months < 0) $months += 12;
if(strpos($format, '%y')===false) {
$months += $years * 12;
}
if(strpos($format, '%w')!==false) {
$weeks = floor($days/7);
$days %= 7;
}
echo date('Y-m-d',$time_start).' to '.date('Y-m-d',$time_end).": {$years}y {$months}m {$weeks}w {$days}d<br/>";
}

(不完整不准确)

我似乎无法正确计算。由于闰年和月份的长度不同,天真地将它分开是行不通的。

逻辑还需要根据格式字符串进行更改。例如,使用格式字符串 %y year %m month %d day 将 04-Feb-2010 传递到 28-Jun-2011(作为 unix 时间戳)应该输出 1 year 4 month 24 day 但如果 %y year 被省略,那么它需要在月份上加上 12 个月,即输出应该是 16 month 24 day

也应该处理时间...但我还没有做到这一点。


这些都不是date_diff解决方案处理。而且我不知道如何将其破解成 date_diff,所以这对我来说并不是真正的解决方案。

此外,$diff->format 没有按照我的要求执行...如果省略“更大的单位”,则给出总月数和天数。示例:

>>> $start = new DateTime('04-Feb-2010')
>>> $end = new DateTime('28-Jun-2011')
>>> $diff = $start->diff($end)
>>> $diff->format('%m months, %d days')
'4 months, 24 days'

应该是 16 个月零 24 天,正如我之前所说的。在您完全理解它之前,请停止如此快地结束我的问题作为一个骗局。如果可以调整其他问题的解决方案来解决这个问题,那很好,但请解释如何解决,因为我不明白。

要清楚,

  • 如果省略%y,则年份应按月滚动
  • 如果%m被省略,月应该被滚动到天
  • 如果省略%w,则应将周数合并为天数
  • 如果省略%h,则小时应滚动到分钟
  • 如果省略%m,则分钟应滚动为秒

如果省略“较小的单位”,下一个最大的单位可以在有意义的地方四舍五入或取底。

最佳答案

我不希望得到一个可接受的答案,但这是让 date_diff 做几周的方法。

<?php

$january = new DateTime('2010-01-01');
$february = new DateTime('2011-02-20 3:35:28');
$interval = $february->diff($january);

$parts = $interval->format('%y %m %d %h %i %s %a');

$weeks = 0;
list($years, $months, $days, $hours, $minutes, $seconds, $total_days) = explode(' ', $parts);

if ($days >= 7) {
$weeks = (int)($days / 7);
$days %= 7;
}

echo "$years years, $months months, $weeks weeks, $days days, $hours hours, $minutes minutes $seconds seconds";
// 1 years, 1 months, 2 weeks, 5 days, 3 hours, 35 minutes 28 seconds

或许您可以将它集成到您​​的函数中以进行滚动和处理用户给定的格式。

如果没有给出较大的单位,您可以从最大的单位开始并将它们应用回下一个较小的单位。 (即没有年份的 1 年 1 个月应将 12 加回月份)。如果格式中不包含“月份”,则可以使用总天数来处理月份具有不同天数的事实。

关于php - 如何计算两天之间的差异作为格式化字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8993067/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com