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));
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…