This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
How to Compare Dates in php?
I have these two dates
1305004066
1305007443
I want to compare which one is later on than other. How can I do that
If it's UNIX timestamps (seconds since 1970-01-01), the largest one is the latest:
$latest = max($time1, $time2);
Related
This question already has answers here:
How to convert date to timestamp in PHP?
(22 answers)
How to calculate the difference between two dates using PHP?
(34 answers)
Closed 1 year ago.
I have this php code to get the difference between two dates:
$date1=date_create("01.06.2021");
$date2=date_create("05.06.2021");
$diff=date_diff($date1,$date2);
echo $diff->format("%R%a");
Result:
+4
But how can I realize this, wenn the format of $date1 is for example: 20210605T180000
This question already has answers here:
Find difference between two datetimes and format at Y-m-d H:i:s
(7 answers)
Closed 5 years ago.
I have a date in this format: '2017-09-26 00:02:37'. I am trying to calculate the difference of this date and now, and get the value in months.
Eg. (52 weeks)
What is the proper way of achieving this?
There is a function in Carbon called diffInWeeks()
$date->diffInWeeks($otherDate);
This question already has answers here:
How to calculate the difference between two dates using PHP?
(34 answers)
Closed 7 years ago.
How to Calculate time difference between two dates in php?
$date1=date('Y-m-d H:i:s');
$date2=date('2015-03-06 45:06:03');(Db)
am trying to do once time difference between 2 hours send Mail to user.Current datetime and Db datetime difference between 2 hours mean Send Mail to user.How to Check?
Did you try $diff=$date1 - $dates?
strtotime — Parse about any English textual datetime description into a Unix timestamp and divide by 3600 to find result in hours. Try like this..
$date1=date('Y-m-d H:i:s');
$date2=date('2015-03-06 45:06:03');
echo $diff_hours = (strtotime($date1) - strtotime($date2))/3600;
This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
Find difference between two dates in PHP or MySQL
Bonjour! My question is how do you calculate the number of years between two dates using MySql and Php seperately? I want 2 answers: One for MySql and the other for Php.
MySQL:
YEAR(CURDATE()) - YEAR(datecolumn)
PHP:
$interval = date_diff($datetime1, $datetime2);
echo $interval->y;
This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
Is it possible to get UNIX time from such date 2011-02-27 02:04:46?
How can I convert a PHP timestamp like 2011-05-04 10:35:57 to Unix epoch time (in seconds)?
strtotime("2011-05-04 10:35:57")