Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How to calculate the difference between two dates using PHP?

I have two time in this format: date("Y-m-d H:i:s"). How can I calculate different between these two time?

share|improve this question
7  
Google php difference two dates – Pekka 웃 Jul 2 '12 at 14:05
one of this times is time of now and other time is time that saved in a session few second ago – Ehsan Jul 2 '12 at 14:06
@Pekka I use that but I receive 0 – Ehsan Jul 2 '12 at 14:07

marked as duplicate by Pekka 웃, PeeHaa 埽, Rene Pot, Jleagle, vascowhite Jul 2 '12 at 14:06

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 1 down vote accepted

Try this:

<?php
    $datetime1 = date_create($start);
    $datetime2 = date_create($end);
    $interval = date_diff($datetime1, $datetime2);
    return $interval->format('%a'); //returns the number of days
?>
share|improve this answer
The answer below has the links to the documentation. – Ignas Jul 2 '12 at 14:17

Use the DateTime class and the diff method.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.