-1

使用 SQL 数据库中的“天数”,如何以更人性化的格式返回它?

例如,对于许多用户来说,这个数字相当高。而不是他们看到“438天”,我想显示:“1年,2个月,1周,5天。”

谢谢!

4

2 回答 2

2
Select floor(yourfield/365) + ' year(s), ' + 
       floor(mod(yourfield,365)/30) + ' month(s), ' + 
       floor(mod(mod(yourfield,365),30)/7) +' week(s), ' + 
       floor(mod(mod(mod(yourfield,365),30),7)) + ' day(s)'
FROM table

assumes + is valid operator in mySQL for string concat.
assumes 1 year = 365 days
assumes 1 month = 30 days
assumes 1 week = 7 days

鉴于我们不知道考虑月份或闰年中的天数的开始/结束日期是徒劳的。

于 2013-01-25T18:33:00.910 回答
-2

你可以使用strtotime()DateTime

$time = strtotime("438 days ago");
$past = new DateTime(date('Y-m-d', $time));
$present = new DateTime(date('Y-m-d', time()));
$difference = $past->diff($present);
echo $difference->format('%a days %y years');

http://php.net/manual/en/function.date-diff.php

于 2013-01-25T18:14:08.953 回答