Open In App

PHP | date_diff() Function

Last Updated : 12 Feb, 2019
Comments
Improve
Suggest changes
2 Likes
Like
Report
The date_diff() is an inbuilt function in PHP which is used to calculate the difference between two dates. This function returns a DateInterval object on the success and returns FALSE on failure. Syntax:
date_diff($datetime1, $datetime2);
Parameters: The date_diff() function accepts two parameters as mentioned above and described below:
  • $datetime1: It is a mandatory parameter which specifies the first DateTime object.
  • $datetime2: It is a mandatory parameter which specifies the second DateTime object.
Return Value: It returns the difference between two DateTime objects otherwise, FALSE on failure. Below programs illustrate the date_diff() function: Program 1:
Output:
+365 days
Program 2:
Output:
+365 days
+61 days
+281 days
Reference:http://php.net/manual/en/function.date-diff.php

Next Article
Practice Tags :

Similar Reads