Xbase++
Xbase++
Example: Http.GenTimeStamp method
Demonstrates theGenTimeStamp method.
Chilkat Xbase++ Downloads
LOCAL oHttp
LOCAL cTimestamp
oHttp := CreateObject("Chilkat.Http")
// Return current date/time in the following format: Day, DD Mon YYYY HH:MM:SS GMT
cTimestamp := oHttp:GenTimeStamp()
? cTimestamp
// Sample Output:
// Thu, 21 Aug 2025 11:17:31 GMT
oHttp:destroy()