Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I get a date from the database in this format

hh:mm:ss

And I want to add this to the current time and put back to an other table with the following format:

yyyy:mm:dd hh:mm:ss
share|improve this question
1  
Do you mean "add date to time"? And which date? The current? – phihag Mar 8 '11 at 14:20
So wide question.............. – Awais Qarni Mar 8 '11 at 14:21
This thread might possibly help you:stackoverflow.com/questions/2303724/… – Programming Enthusiast Mar 8 '11 at 14:21

3 Answers

up vote 1 down vote accepted

Assuming you get the time from the database in a variable $dbTime I'd do something like this:

$timeArray = explode (":", $dbTime );
$newTime = time() + ($timeArray[0]*60*60) + ($timeArray[1]*60) + $timeArray[2];
$finalTime = date('Y-m-d H:i:s',$newTime);

May not be the cleanest way but it is an option :)

share|improve this answer
Thanks, That's work fine. – run Mar 8 '11 at 14:41
$a = strtotime($timetoadd);
$b = date('U') + $a;
$c = date('Y-m-d H:i:s',$b);

Edit: Try this instead:

$arr = explode(':',$timetoadd);
$b = mktime(date('h')+$arr[0],date('i')+$arr[1],date('s')+$arr[2],date('m'),date('d'),date('y'));
$c = date('Y-m-d H:i:s',$b);
share|improve this answer
I had tried, but I got this :1916-04-06 17:16:06,This is a date from the past... – run Mar 8 '11 at 14:32
Check my edit. Give it a shot and let me know if it works – Munim Mar 8 '11 at 16:09
Yes, working to. Thanks! – run Mar 8 '11 at 23:21

From your question, I understand that you want your time value from database to be added in the current date time value. Here is the code to do so:-

// hh:mm:ss value you get from your database
$yourDateTime = "SOME DATA";

// current date time
$currentDateTime = date("Y:m:d h:i:s", time());

// separating date and time
$currentDateTimeArray = explode('', $currentDateTime);

// adding your time value to current time value
$currentDateTimeArray[1] = $yourDateTime;

$newDateTime = implode('', $currentDateTimeArray);

Hope this helps. Thanks.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.