Is that normal that this line:
echo date("Y-m-d h:m:s a", strtotime('2012-03-18 12:55:00'))
gives me 2012-03-18 12:03:00 pm
Whatever the minutes I enter, I always get 03 minutes... weird.
|
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
Your date string format should be :
PHP's documentation has this to say about formatting a local time/date -
What you were seeing as |
|||
|
Your "minutes" are actually "months". Use
|
|||
|
|
|
In PHP's
|
|||
|
|
|
That's because
|
|||
|
|