"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Add or Subtract 30 Minutes to a Time String in PHP?

How to Add or Subtract 30 Minutes to a Time String in PHP?

Posted on 2025-03-25
Browse:415

How to Add or Subtract 30 Minutes to a Time String in PHP?

How to Add and Subtract 30 Minutes to a Time String in PHP

For clarity, you're aiming to manipulate a time value formatted as "H:i" by adding and subtracting 30 minutes. Let's delve into the process.

Defining the Function

$time = '10:00'; // Assuming 'H:i' format

// Calculate start and end times
$startTime = date("H:i", strtotime('-30 minutes', strtotime($time)));
$endTime = date("H:i", strtotime(' 30 minutes', strtotime($time)));

Explanation:

  1. Convert the given time string to a timestamp using strtotime. This interpretation makes it easier to manipulate.
  2. Use the strtotime function with an offset of -30 minutes to create a new timestamp representing 30 minutes before the original time. Then convert it back to a string in "H:i" format using date.
  3. Perform a similar process for the end time, but with an offset of 30 minutes.

Result:

Running this code with an input time of '10:00' will generate the following:

$startTime = '09:30'
$endTime = '10:30'
Release Statement This article is reproduced on: 1729224077 If there is any infringement, please contact [email protected] to delete it.
Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3