I understand that datetimes in php are represented as the number of milliseconds after a certain date (for some time in 1960, I think?). How to create date and time which represents the earliest valid date in php? Possible syntax example:
$date = new DateTime(0);
but it does not work. Is there any other way to do this?
Thanks for any input.
source share