Reply to Re: strtotime and a very mysterious date

Your name:

Reply:


Posted by Gleep on 01/16/07 17:26

On Tue, 16 Jan 2007 10:14:53 +0100, Christoph Burschka <christoph.burschka@rwth-aachen.de> wrote:

>Christoph Burschka schrieb:
>> Namely the thirteenth of December 1901, 12:45:52, Pacific Time.
>>
>> All dates later than this passed in format "yyyy-mm-dd hh:mm:ss" to the
>> strtotime function return the correct unix timestamp value (as can be
>> verified by passing it back to date()).
>>
>> If a date earlier than 1901-12-13 12:45:52 is used, it returns an error.
>> I tried this for a while to find the exact cut-off point, and this is it.
>>
>> Any reason - possibly a limitation of the integer value that is used? I
>> didn't find this documented anywhere...
>>
>> --
>> Christoph Burschka
>
>Whoops, I should have checked more closely. In fact this *is* documented
>as the minimal value of most dates due to the length of the 32-bit integer.
>
>I never considered that these "Y2K" problems work backwards, too...


use this to convert old dates


<?php
function convert_date($text_date){
$months = array(
'01' => 'January',
'02' => 'February',
'03' => 'March',
'04' => 'April',
'05' => 'May',
'06' => 'June',
'07' => 'July',
'08' => 'August',
'09' => 'September',
'10' => 'October',
'11' => 'November',
'12' => 'December',
);

$parts = explode("-", $text_date);
$month = $months[$parts[1]];
$year = $parts[0];
$day = $parts[2];

return "$month $day, $year";
}

echo convert_date('1964-03-22' ); // should output March 22, 1964

?>

[Back to original message]


Удаленная работа для программистов  •  Как заработать на Google AdSense  •  England, UK  •  статьи на английском  •  PHP MySQL CMS Apache Oscommerce  •  Online Business Knowledge Base  •  DVD MP3 AVI MP4 players codecs conversion help
Home  •  Search  •  Site Map  •  Set as Homepage  •  Add to Favourites

Copyright © 2005-2006 Powered by Custom PHP Programming

Сайт изготовлен в Студии Валентина Петручека
изготовление и поддержка веб-сайтов, разработка программного обеспечения, поисковая оптимизация