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.

echo date('Y-m-d h:m:s',strtotime('2008-11-03 16:00:29'))

Returns 2008-11-03 04:11:29

I've tried changing my default time zone and adding GMT,UTC,PTC behind the string and nothing will change the output. How do I get strtotime to match the input?

share|improve this question

2 Answers

up vote 1 down vote accepted

Use 'Y-m-d H:i:s' if you want 24-hour time, or add the am/pm to the end with 'Y-m-d h:i:s a'

share|improve this answer

You need i for minutes and H for 24-hour.

See date documentation.

m is month, which is why your time has 11 as minutes, the same as the month.

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.