For example, I mostly program in PHP. What can I do today to prevent my program from exploding in 2038 due to unix time stamp running out? I would love to see some specific algorithms, functions or logics that can work to prevent this problem. Thanks.
|
|
Store the timestamp as a 64bit, or higher, integer. I'm sure MySQL will be updated by then so that |
|||||||||||||
|
|
Unless you plan on using a 32-bit server or PHP binary for the next 25 years I don't think it will be a problem. PHP is an interpreted language, so when you write The only consideration I can see making is for the storage of integer values outside of PHP, ie. in mySQL. In this case you just need to make sure that you're storing your timestamp as either an UNSIGNED INT, BIGINT, or DATETIME. SIGNED INTs will conk out Tue, 19 Jan 2038 03:14:07 GMT, but UNSIGNED INTs will last until Sun, 07 Feb 2106 06:28:15 GMT. |
|||
|
|
Change
to
for internal storage. |
|||
|
|