Tcl
Tcl
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 Tcl Downloads
load ./chilkat.dll
set success 0
set dt [new_CkDateTime]
set success [CkDateTime_SetFromCurrentSystemTime $dt]
# Get a UTC time.
set bLocal 0
set timestamp [CkDateTime_getAsTimestamp $dt $bLocal]
puts "Current UTC Time: $timestamp"
# Get a local time.
set bLocal 1
set timestamp [CkDateTime_getAsTimestamp $dt $bLocal]
puts "Current Local Time: $timestamp"
# Sample output:
#
# Current UTC Time: 2022-03-01T00:48:58Z
# Current Local Time: 2022-02-28T18:48:58-06:00
delete_CkDateTime $dt