Jump to content

adding time


gple

Recommended Posts

What is the format of your variable? If it is "hh:mm:ss", use the strtotime() function in combination with the date() function:

<?php
$time = '9:00';
$new_time = date('H:i',strtotime($time . '+ 1 hour + 15 minutes'));
echo $time . ' ... ' . $new_time . "<br>";
?>

 

Ken

Link to comment
https://forums.phpfreaks.com/topic/74634-adding-time/#findComment-377253
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.