Re: Timestamps for 1800's
Available news archives: comp.lang.tcl - comp.lang.python - comp.security.firewalls - sci.crypt - comp.lang.php - comp.lang.javascript
Google
 
Web news.hping.org


comp.lang.php archive

Re: Timestamps for 1800's

From: Michel <no@spam.please>
Date: Wed Jul 20 2005 - 17:53:31 CEST

have the monthnames in an array.
split on spaces
loop array until you find the right month
add 1 (or have array[0]='none'; )
put string together in your format
done

"DJ Craig" <spit@djtricities.com> wrote in message
news:1121869645.273644.174560@o13g2000cwo.googlegroups.com...
> I'm trying to convert this date:
> 12 May1868
> Into this:
> 18690512
> That's YYYYMMDD. So first I need to convert it to a UNIX time stamp
> using the strtotime() function, then convert it to YYYYMMDD. This
> works for more rescent dates:
> $d = date('Ymd', strtotime($d));
> I tested that with 19 July2005, and it worked. But the strtotime()
> function seems to return -1 for dates before the UNIX epoch. How can I
> convert these dates?
>
Received on Mon Oct 17 21:12:28 2005