Jump to content

Need help adding seconds to time


urbandsigns.com

Recommended Posts

Is this what you're looking for: [code]<?php
$time = '13:15:07';
echo "Time: {$time}<br />";
$new_time = date('H:i:s',strtotime($time)+8); // adds 8 seconds
echo "New time: {$new_time}";
?>[/code]

It would generate the output: [code]Time: 13:15:07
New time: 13:15:15[/code]

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.