私はphp strtotime関数(Day, month and two digit year, with dots or tabs
ドキュメントからの日付形式dmy:http://www.php.net/manual/en/datetime.formats.date.php)を使用していますが、問題が見つかりました:
php.net の例から strtotime("30.6.08") -> 1214773200 -> 2008 年 6 月 29 日 (日) 21:00:00 GMT (逆変換右)
別のバリアント strtotime("24.10.13") -> 1381180213 -> 2013 年 10 月 7 日月曜日 21:10:13 GMT (逆は正しくありません)
ただし、 strtotime("30.10.13") -> 1383084000 -> 2013 年 10 月 29 日火曜日 22:00:00 GMT (逆の結果が正しく返されます)
どうしたの?