开发者

i want to date difference in week,month year in php? [duplicate]

This question already has answers here: How to calculate the difference between two dates using PHP? (34 answers) Closed 9 years ago.

I am new here and php i want to know how to calculate date difference in php.

My date is mktime() formate.

Please confirm this is current i开发者_如何学运维ssue for me.


In PHP to calculate the difference in two dates, you have to use mktime() function and then find out the difference in seconds.

Sample Code :

<?php
$epoch_1 = mktime(19,32,56,5,10,1965);

$epoch_2 = mktime(4,29,11,11,20,1962);

$diff_seconds  = $epoch_1 - $epoch_2;
$diff_weeks    = floor($diff_seconds/604800);
$diff_seconds -= $diff_weeks   * 604800;
$diff_days     = floor($diff_seconds/86400);
$diff_seconds -= $diff_days    * 86400;
$diff_hours    = floor($diff_seconds/3600);
$diff_seconds -= $diff_hours   * 3600;
$diff_minutes  = floor($diff_seconds/60);
$diff_seconds -= $diff_minutes * 60;

print "The two dates have $diff_weeks weeks, $diff_days days, ";
print "$diff_hours hours, $diff_minutes minutes, and $diff_seconds ";
print "seconds elapsed between them.";
?>


PHP has the function date_diff, which computes the date difference. See: http://php.net/manual/en/function.date-diff.php

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜