I have written a program that uses the built-in PHP date functions.
All that the program does is calculate the amout of time between two
dates, or calculate the date a certain amount of time before or after
another date. It works, but I didn't realize until after I finished it
that it won't work for dates outside the range of 1969-2033. I need it
to work for any date going back to the 1500s for pairs of dates that
are up to about 400 years apart. Is there any way that I can fix my
program without having to start over writing my own date functions? My
program uses the strtotime() and date() functions.
All that the program does is calculate the amout of time between two
dates, or calculate the date a certain amount of time before or after
another date. It works, but I didn't realize until after I finished it
that it won't work for dates outside the range of 1969-2033. I need it
to work for any date going back to the 1500s for pairs of dates that
are up to about 400 years apart. Is there any way that I can fix my
program without having to start over writing my own date functions? My
program uses the strtotime() and date() functions.
Comment