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.

Possible Duplicate:
PHP Date Time Current Time Add Minutes

I need to add 30 minutes in specified time, The below is result but how it will

4:50 pm 30 minutes result= 5:20 pm

4:50 pm is not current time 30 minutes need to add in specified time and the result is 5:20 pm

share|improve this question
Please note that the question seems to refer to a string with "4:40 pm", not a date. – Álvaro G. Vicario Aug 16 '11 at 16:12

marked as duplicate by Gordon, KevinDTimm, Marc B, genesis, Bo Persson Aug 17 '11 at 21:58

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

use strtotime

echo date('G:i:s', strtotime('NOW + 30 minutes'));

demo (GTM + 1)

share|improve this answer
not need to add in current time i need to add minutes in specified time like "4:50 pm" – Adnan Khan Aug 16 '11 at 15:52
echo date('g:i a', time()+30*60);

this is for you.

share|improve this answer

Here's an article that shows some date math examples. You might also find the PHP Time Manual useful.

share|improve this answer
This article assumes that daylight saving time does not exist. – Álvaro G. Vicario Aug 16 '11 at 15:43

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