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:
Result:
Running this code with an input time of '10:00' will generate the following:
$startTime = '09:30' $endTime = '10:30'
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