PHP ActiveX
PHP ActiveX
Example: Http.GenTimeStamp method
Demonstrates theGenTimeStamp method.
Chilkat PHP ActiveX Downloads
<?php
$http = new COM("Chilkat.Http");
// Return current date/time in the following format: Day, DD Mon YYYY HH:MM:SS GMT
$timestamp = $http->genTimeStamp();
print $timestamp . "\n";
// Sample Output:
// Thu, 21 Aug 2025 11:17:31 GMT
?>