delphi实现js的获取时间,兼容各系统。

function GetJSTime:string;
var
  i:Int64;
begin
  //StrToDateTime('1970/01/01 08:00:00')
  i:=MilliSecondsBetween(EncodeDateTime(1970, 1, 1, 8, 0, 0, 0), Now());
  Result:=IntToStr(i);
end;

你可能感兴趣的:(delphi实现js的获取时间,兼容各系统。)