I have a timestamp value from PHP: 1188604800000
When I format the time for reading by a person as follows:
date("m/d/Y", 1188604800000)
He prints:
05/21/39635
If I put the number in the Timestamp Unix online converter, I get:
Sat, 01 Sep 2007 00:00:00 GMT
What am I doing wrong?
source share