Lianja
Lianja
Get Current Date/Time as Timestamp (YYYY-MM-DDThh:mm:ssTZD)
Demonstrates how to get the current system date/time in YYYY-MM-DDThh:mm:ssTZD format.Chilkat Lianja Downloads
llSuccess = .F.
loDt = createobject("CkDateTime")
llSuccess = loDt.SetFromCurrentSystemTime()
// Get a UTC time.
llBLocal = .F.
lcTimestamp = loDt.GetAsTimestamp(llBLocal)
? "Current UTC Time: " + lcTimestamp
// Get a local time.
llBLocal = .T.
lcTimestamp = loDt.GetAsTimestamp(llBLocal)
? "Current Local Time: " + lcTimestamp
// Sample output:
//
// Current UTC Time: 2022-03-01T00:48:58Z
// Current Local Time: 2022-02-28T18:48:58-06:00
release loDt