我使用PHP的strtotime功能 (日期格式DOC從DMY Day, month and two digit year, with dots or tabs
:http://www.php.net/manual/en/datetime.formats.date.php) ,發現問題:PHP的strtotime返回錯誤的時間戳
從php.net例子的strtotime( 「08年6月30日」) - > 1214773200 - > Sun,29 Jun 2008 21:00:00 GMT(反向右轉)
另一個變種strtotime(「24.10.13」) - > 1381180213 - > Mon,07 Oct 2013 21:10:13 GMT(反向不對)
但是strtotime(「30.10.13」) - > 1383084000 - > 2013年10月29日星期二22:00:00 GMT(rev erse結果再次正確)
什麼錯了?
的可能重複[PHP的strtotime不工作(http://stackoverflow.com/questions/5680056/php-strtotime-not-working) –
的strtotime是不可能不犯錯 - 如果你知道的格式,你應使用[DateTime :: createFromFormat](http://www.php.net/manual/en/datetime.createfromformat.php)(可從PHP 5.3.x及更高版本獲得)或類似內容。 –