Fix php strtotime bug on 32bit server
You may get an integer overflow bug if you’re using strtotime
on a 32bit server.
This was the Y2K38 problem.
The UNIX timestamp will reach the int variable limitation on 32bit OS at 19 January 2038.
However, we can fix this bug by using a customized function: