Neden strtotime ($ lastmoment) kez daha büyük () nedir?

2 Cevap php

Aşağıdaki kodu

 echo $lastmoment."<br/>";
echo time();
echo "<br/>";
echo strtotime($lastmoment);

çıkışlar:

2009-12-15 17:40:53 1260876829 1260898853

Ne oldu? $ Lastment neden strtotime ($ lastmoment) kez daha büyük () olup, MySQL bir geçmiş zaman damgası nedir?

2 Cevap

MySQL sunucu, farklı bir makine ise $ lastmoment de damgası farklı bir makineden kurulmuştur, ya da, sen saat sürüklenme görüyor olabilir. Çeşitli makinelerde sistemi saatlerini kontrol edin ve kabul görmek.

() Fonksiyonu olduğu zaman $ lastmoment önce bazı milisaniyede idam edilebilir çünkü.

EDIT: Adding the comment to my thoughts, it might me that, the convert of strtotime() might have failed. Or the date value from the database contains a value e.g. days which the date() does not have. Be sure, that you compare 2 datevalues of the same format.