Sample code for 30+ languages & platforms
Visual FoxPro

Example: Http.GenTimeStamp method

Demonstrates the GenTimeStamp method.

Chilkat Visual FoxPro Downloads

Visual FoxPro
LOCAL loHttp
LOCAL lcTimestamp

loHttp = CreateObject('Chilkat.Http')

* Return current date/time in the following format: Day, DD Mon YYYY HH:MM:SS GMT
lcTimestamp = loHttp.GenTimeStamp()
? lcTimestamp

* Sample Output:
* Thu, 21 Aug 2025 11:17:31 GMT

RELEASE loHttp