Αποτελέσματα Αναζήτησης
24 Μαρ 2009 · The best course of action is using PHP's DateTime (and DateInterval) objects. Each date is encapsulated in a DateTime object, and then a difference between the two can be made: $first_date = new DateTime("2012-11-30 17:03:30"); $second_date = new DateTime("2012-12-21 00:00:00");
15 Μαρ 2013 · Calculate the difference between two dates: <?php. $date1=date_create ("2013-03-15"); $date2=date_create ("2013-12-12"); $diff=date_diff ($date1,$date2); ?> Try it Yourself » Definition and Usage. The date_diff () function returns the difference between two DateTime objects. Syntax. date_diff (datetime1, datetime2, absolute) Parameter Values.
If you want the number of years between two dates, why not just use the following : function yearsDifference($endDate, $beginDate) { $date_parts1=explode("-", $beginDate); $date_parts2=explode("-", $endDate); return $date_parts2[0] - $date_parts1[0]; } echo yearsDifference('2011-03-12','2008-03-09'); Which, in this case, will get you : 3
Function Reference. Date and Time Related Extensions. Date/Time Functions. Change language: date_diff. (PHP 5 >= 5.3.0, PHP 7, PHP 8) date_diff — Alias of DateTime::diff () Description ¶. This function is an alias of: DateTime::diff () Improve This Page. Learn How To Improve This Page • Submit a Pull Request • Report a Bug. + add a note.
13 Μαρ 2016 · Learn how to retrieve the difference in years (and other formats) between 2 dates with php.
Introduction ¶. Represents a date interval. A date interval stores either a fixed amount of time (in years, months, days, hours etc) or a relative time string in the format that DateTimeImmutable 's and DateTime 's constructors support. More specifically, the information in an object of the DateInterval class is an instruction to get from one ...
27 Σεπ 2024 · In PHP, you can calculate the difference between two dates using the DateTime class and its diff() method. This method returns a DateInterval object, allowing you to access the difference in years, months, days, and more.