vote up 0 vote down star

This is my code:

$testtime = str_replace('.', '-', '2009.07.08 17:01');
$timestamp = strtotime($testtime);
echo $timestamp . "\n";
echo $testtime . "\n";
echo date('Y-m-d H:t', $timestamp);

And this is my output:

1247065260

2009-07-08 17:01

2009-07-08 17:31

What's wrong?

Thank you in advance.

flag

42% accept rate

1 Answer

vote up 3 vote down check

Your parameters for date() are wrong. You should use date('Y-m-d H:i', $timestamp).

t is the number of days of the current month, therefore 31.

link|flag
Haha ops, I mixed that up - how embarrassing. Thank you! – Ivarska Oct 2 at 14:08

Your Answer

Get an OpenID
or

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