开发者

PHP - Extracting weeks/days/hours/minutes from a date calc

$dateDiff    = $mtime - $ctime;
$fullDays    = floor($dateDiff/(60*60*24));
$fullHours   = floor(($dateDiff-($fullDays*60*60*24))/(60*60)开发者_JAVA技巧);
$fullMinutes = floor(($dateDiff-($fullDays*60*60*24)-($fullHours*60*60))/60);
echo "Difference is $fullDays days, $fullHours hours and $fullMinutes minutes."; 

I am looking to add the ability to see weeks as well. I know I could just repeat the same process, but is there a library or an easier way?


In PHP 5.3 and up, there's the DateTime class. See http://php.net/manual/en/class.datetime.php.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜