Sample code for 30+ languages & platforms
Xbase++

Example: Http.GenTimeStamp method

Demonstrates the GenTimeStamp method.

Chilkat Xbase++ Downloads

Xbase++
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()