Thema: Delphi Unix Timestamp

Einzelnen Beitrag anzeigen

horst

Registriert seit: 1. Jul 2003
347 Beiträge
 
Delphi 2007 Professional
 
#1

Unix Timestamp

  Alt 28. Mär 2005, 20:59
Wenn ich die Uhrzeit 19:45h per DateTimeToUnix umwandel, bekomme ich auf dem Server 21:45h angezeigt, jemand eine Ahnung warum?

Delphi-Quellcode:
const
  // Sets UnixStartDate to TDateTime of 01/01/1970
  UnixStartDate: TDateTime = 25569.0;

function DateTimeToUnix(ConvDate: TDateTime): Longint;
begin
  //example: DateTimeToUnix(now);
  Result := Round((ConvDate - UnixStartDate) * 86400);
  form1.edit17.text:=inttostr(Result);
end;
//DateTimeToUnix(now);
Kann das am Server liegen oder am Script?

Grüße
Horst
  Mit Zitat antworten Zitat