Sample code for 30+ languages & platforms
Xbase++

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 Xbase++ Downloads

Xbase++
LOCAL nSuccess
LOCAL oDt
LOCAL nBLocal
LOCAL cTimestamp

nSuccess := 0

oDt := CreateObject("Chilkat.CkDateTime")

nSuccess := oDt:SetFromCurrentSystemTime()

//  Get a UTC time.
nBLocal := 0
cTimestamp := oDt:GetAsTimestamp(nBLocal)
? "Current UTC Time: " + cTimestamp

//  Get a local time.
nBLocal := 1
cTimestamp := oDt:GetAsTimestamp(nBLocal)
? "Current Local Time: " + cTimestamp

//  Sample output:
//  
//  Current UTC Time: 2022-03-01T00:48:58Z
//  Current Local Time: 2022-02-28T18:48:58-06:00

oDt:destroy()