I am using the following code to transform a universal time code into something a little more user friendly.

$meeting_time = date('g:i a', strtotime($time_date_data));

But now I need to subtract 6 hours from meeting_time. Should I do it after the code above or can I work it into the same date function?

Something like:

$meeting_time = date('g:i a' - 6, strtotime($time_date_data));
link|improve this question

feedback

4 Answers

up vote 1 down vote accepted
$meeting_time = date('g:i a', strtotime($time_date_data) - 60 * 60 * 6);

String-to-time (strtotime) returns a Unix Time Stamp which is in seconds (since Epoch), so you can simply subtract the 21600 seconds, before converting it back to the specified date format.

link|improve this answer
Thanks for the explanation. +1 checked. – Denoteone Nov 21 '11 at 15:39
feedback

Try this:

// 6 hours, 3600 seconds in an hour
$meeting_time = date('g:i a', strtotime($time_date_data) - 6 * 3600);
link|improve this answer
Thanks +1 for the help – Denoteone Nov 21 '11 at 15:40
feedback

You should be able to do this:

$meeting_time = date('g:i a', strtotime($time_date_data));
date_add($meeting_time, - date_interval_create_from_date_string('6 hours'));
link|improve this answer
feedback

Another approach:

$meeting_time = date('g:i a', strtotime('-6 hours', strtotime($time_date_data)));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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