Jump to content

time since epoch, unix time, timestamp


blakel
 Share

Recommended Posts

Here is a quick function that returns time since epoch, or is MSDN states

The time function returns the number of seconds elapsed since midnight (00:00:00), January 1, 1970, Coordinated Universal Time (UTC), according to the system clock.

Func time()
    Local $rslt = DllCall("msvcrt.dll", "int:cdecl", "time", "int", 0)
    If @error = 0 Then Return $rslt[0]
    Return -1
EndFunc
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...