Ask Your Question
0

How to retrieve the interval seconds between two date and time values using PHP?

asked 2022-07-11 11:00:00 +0000

lakamha gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
1

answered 2022-06-02 08:00:00 +0000

qstack gravatar image

You can use the DateTime class in PHP to retrieve the interval seconds between two date and time values. Here’s an example:

// Set the start date and time
$start_date = new DateTime('2021-08-05 08:30:00');

// Set the end date and time
$end_date = new DateTime('2021-08-05 09:30:30');

// Get the interval seconds
$interval = $end_date->getTimestamp() - $start_date->getTimestamp();
echo $interval;

In this example, we set the start date and time to August 5th, 2021 at 8:30:00 AM and the end date and time to August 5th, 2021 at 9:30:30 AM. We then calculate the interval seconds by subtracting the start timestamp from the end timestamp using the getTimestamp() method. Finally, we output the interval seconds, which in this case is 3630 (i.e., one hour, 30 seconds).

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-07-11 11:00:00 +0000

Seen: 14 times

Last updated: Jun 02 '22