これは私のコードです:
$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);
そして、これは私の出力です:
1247065260
2009-07-08 17:01
2009-07-08 17:31
どうしたの?
前もって感謝します。