In JavaScript I am using (new Date("1985-05-01")).getTime();
to get the timestamp. The return value is 483753600000.
In PHP I would like to return the year of that timestamp.
date('Y', 483753600000);
returns 17299 but 1985 is expected.
What am I doing wrong?