I have a timestamp value from PHP: 1188604800000
When I format the time to human readable like this:
date(\"m/d/Y\", 1188604800000)
I was having trouble with my date being one day off and I had to manually set the default timezone to match my location by using
A list of support timezones can be found here - http://www.php.net/manual/en/timezones.php
(I don't have enough rep to comment so can someone merge that with the actual answer?)