[Overview][Constants][Types][Procedures and functions][Variables] | Reference for unit 'oldlinux' (#rtl) |
Convert local time to epoch (unix) time
Source position: oldlinux.pp line 1319
function LocalToEpoch( |
year: Word; |
month: Word; |
day: Word; |
hour: Word; |
minute: Word; |
second: Word |
):LongInt; |
Converts the Local time to epoch time (=Number of seconds since 00:00:00 , January 1, 1970 ).
None
|
Return the current unix time |
|
|
Convert epoch time to local time |
|
|
Return current system time |
|
|
Return the system date |
Program Example4; { Program to demonstrate the LocalToEpoch function. } Uses oldlinux; Var year,month,day,hour,minute,second : Word; begin Write ('Year : ');readln(Year); Write ('Month : ');readln(Month); Write ('Day : ');readln(Day); Write ('Hour : ');readln(Hour); Write ('Minute : ');readln(Minute); Write ('Seonds : ');readln(Second); Write ('This is : '); Write (LocalToEpoch(year,month,day,hour,minute,second)); Writeln (' seconds past 00:00 1/1/1980'); end.
No notes exist for this page yet.