Quote:
Originally Posted by BlueMelon
It's off by around 22 minutes or something like that
|
It varies from server to server but yeah. On Classic iPhone the timevar2 (epoch time) server is off by about 6 minutes and 10 seconds. So I have to calculate the relative timevar2 variable for time-sensitive events (event at 3 PM EST):
PHP Code:
public function actualtimevar2(tv) {
// For converting real epoch timestamps to
// server's timevar2.
return tv - (60 * 6) - 12;
}