$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.
精彩评论