新しいバージョンがインストールされているユーザー-確認してください。 そして、クローバーを再インストールするための1つのチェックのために...検証のためのhabrakatコードの下。
<?php
echo strtotime("2008-10-26")-strtotime("2008-10-25")."\n";
echo strtotime("2008-10-27")-strtotime("2008-10-26")."\n";
echo strtotime("2008-10-28")-strtotime("2008-10-27")."\n";
$time=strtotime("2008-10-25");
$end_time=strtotime("2008-10-28");
while($time<$end_time)
{ echo $time."\t";
echo date('Ymd H:i:s',$time)."\n";
$time+=86400; // 60sec * 60min * 24hour
}
?>
結果:
86400
90,000
86400
1224871200 2008-10-25 00:00:00
1224957600 2008-10-26 00:00:00
1225044000 2008-10-26 23:00:00
1225130400 2008-10-27 23:00:00
更新:コメントを読むのが面倒な人のために-これはバグではなく、これは機能です! 夏と冬の時間に関係しています。